3
0
Fork 0
forked from mirrors/nixpkgs

* Put the hostname of the VM in the window title.

svn path=/nixos/branches/boot-order/; revision=22191
This commit is contained in:
Eelco Dolstra 2010-06-09 10:51:05 +00:00
parent 5ddaf9b963
commit c1ecdf708f

View file

@ -123,7 +123,9 @@ let
# -no-kvm-irqchip is needed to prevent the CIFS mount from
# hanging the VM on x86_64.
exec ${pkgs.qemu_kvm}/bin/qemu-system-x86_64 -m ${toString config.virtualisation.memorySize} \
exec ${pkgs.qemu_kvm}/bin/qemu-system-x86_64 \
-name ${vmName} \
-m ${toString config.virtualisation.memorySize} \
-no-kvm-irqchip \
-net nic,vlan=0,model=virtio -net user,vlan=0 -smb / \
-drive file=$NIX_DISK_IMAGE,if=virtio,boot=on,werror=report \