at 16.09-beta 570 B view raw
1{ config, lib, pkgs, ... }: 2 3with lib; 4 5{ 6 imports = 7 [ ../virtualisation/virtualbox-image.nix 8 ../installer/cd-dvd/channel.nix 9 ../profiles/demo.nix 10 ../profiles/clone-config.nix 11 ]; 12 13 # FIXME: UUID detection is currently broken 14 boot.loader.grub.fsIdentifier = "provided"; 15 16 # Allow mounting of shared folders. 17 users.extraUsers.demo.extraGroups = [ "vboxsf" ]; 18 19 # Add some more video drivers to give X11 a shot at working in 20 # VMware and QEMU. 21 services.xserver.videoDrivers = mkOverride 40 [ "virtualbox" "vmware" "cirrus" "vesa" ]; 22}