mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 14:32:59 +00:00
vmTools: allow qemu to be overridden via customQemu argument
This commit is contained in:
parent
f53f729ecd
commit
65c851cd75
@ -1,5 +1,6 @@
|
||||
{ lib
|
||||
, pkgs
|
||||
, customQemu ? null
|
||||
, kernel ? pkgs.linux
|
||||
, img ? pkgs.stdenv.hostPlatform.linux-kernel.target
|
||||
, storeDir ? builtins.storeDir
|
||||
@ -218,7 +219,7 @@ rec {
|
||||
|
||||
|
||||
qemuCommandLinux = ''
|
||||
${qemu-common.qemuBinary qemu} \
|
||||
${if (customQemu != null) then customQemu else (qemu-common.qemuBinary qemu)} \
|
||||
-nographic -no-reboot \
|
||||
-device virtio-rng-pci \
|
||||
-virtfs local,path=${storeDir},security_model=none,mount_tag=store \
|
||||
|
Loading…
Reference in New Issue
Block a user