2013-07-03 11:59:00 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2013-09-04 11:05:09 +00:00
|
|
|
imports =
|
2013-07-03 11:59:00 +00:00
|
|
|
[ ../virtualisation/virtualbox-image.nix
|
|
|
|
../installer/cd-dvd/channel.nix
|
|
|
|
../profiles/demo.nix
|
|
|
|
../profiles/clone-config.nix
|
|
|
|
];
|
2013-10-09 11:30:31 +00:00
|
|
|
|
|
|
|
# Allow mounting of shared folders.
|
|
|
|
users.extraUsers.demo.extraGroups = [ "vboxsf" ];
|
2013-10-09 11:33:43 +00:00
|
|
|
|
|
|
|
# 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" ];
|
2013-07-03 11:59:00 +00:00
|
|
|
}
|