3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/modules/installer/virtualbox-demo.nix
Eelco Dolstra 87bea0b09e Add more video drivers to the VM image
This might allow it to work in VMware and QEMU.
2013-10-09 13:36:37 +02:00

18 lines
461 B
Nix

{ config, pkgs, ... }:
{
imports =
[ ../virtualisation/virtualbox-image.nix
../installer/cd-dvd/channel.nix
../profiles/demo.nix
../profiles/clone-config.nix
];
# 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" ];
}