mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
96190535e5
This reverts commit 095fe5b43d
.
Pointless renames considered harmful. All they do is force people to
spend extra work updating their configs for no benefit, and hindering
the ability to switch between unstable and stable versions of NixOS.
Like, what was the value of having the "nixos." there? I mean, by
definition anything in a NixOS module has something to do with NixOS...
26 lines
643 B
Nix
26 lines
643 B
Nix
{ lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
imports =
|
|
[ ../virtualisation/virtualbox-image.nix
|
|
../installer/cd-dvd/channel.nix
|
|
../profiles/demo.nix
|
|
../profiles/clone-config.nix
|
|
];
|
|
|
|
# FIXME: UUID detection is currently broken
|
|
boot.loader.grub.fsIdentifier = "provided";
|
|
|
|
# Allow mounting of shared folders.
|
|
users.users.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" "modesetting" ];
|
|
|
|
powerManagement.enable = false;
|
|
system.stateVersion = mkDefault "18.03";
|
|
}
|