From 03730319bd0f51b8fb5a19eccf0b92628923a2fc Mon Sep 17 00:00:00 2001 From: aszlig Date: Thu, 17 Sep 2015 12:27:16 +0200 Subject: [PATCH] nixos/virtualbox-image: Use 32MB of video memory. Booting the demo/installer image won't work if the video memory is too low. It boots into KDE, shows the background image and doesn't do anything, according to @domenkozar. Thanks to @domenkozar for reporting and testing this with 32MB. Signed-off-by: aszlig --- nixos/modules/virtualisation/virtualbox-image.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/virtualisation/virtualbox-image.nix b/nixos/modules/virtualisation/virtualbox-image.nix index ca2c4035cc9..767a8c339a3 100644 --- a/nixos/modules/virtualisation/virtualbox-image.nix +++ b/nixos/modules/virtualisation/virtualbox-image.nix @@ -109,7 +109,7 @@ in { VBoxManage createvm --name "$vmName" --register \ --ostype ${if pkgs.stdenv.system == "x86_64-linux" then "Linux26_64" else "Linux26"} VBoxManage modifyvm "$vmName" \ - --memory 1536 --acpi on --vram 10 \ + --memory 1536 --acpi on --vram 32 \ ${optionalString (pkgs.stdenv.system == "i686-linux") "--pae on"} \ --nictype1 virtio --nic1 nat \ --audiocontroller ac97 --audio alsa \