From 87bea0b09eaa99a663c4d8a32b6b3da1c5352bfc Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 9 Oct 2013 13:33:43 +0200 Subject: [PATCH] Add more video drivers to the VM image This might allow it to work in VMware and QEMU. --- modules/installer/virtualbox-demo.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/installer/virtualbox-demo.nix b/modules/installer/virtualbox-demo.nix index 1efb84317ab3..c965be2ad853 100644 --- a/modules/installer/virtualbox-demo.nix +++ b/modules/installer/virtualbox-demo.nix @@ -10,4 +10,8 @@ # Allow mounting of shared folders. users.extraUsers.demo.extraGroups = [ "vboxsf" ]; + + # Add some more video drivers to give X11 a shot at working in + # VMware and QEMU. + services.xserver.videoDrivers = mkOverride 40 [ "virtualbox" "vmware" "cirrus" "vesa" ]; }