nixpkgs/nixos/modules/installer/cd-dvd/installation-cd-graphical-gnome.nix
volth f3282c8d1e treewide: remove unused variables (#63177)
* treewide: remove unused variables

* making ofborg happy
2019-06-16 19:59:05 +00:00

22 lines
406 B
Nix

# This module defines a NixOS installation CD that contains X11 and
# GNOME 3.
{ lib, ... }:
with lib;
{
imports = [ ./installation-cd-graphical-base.nix ];
services.xserver.desktopManager.gnome3.enable = true;
services.xserver.displayManager.slim.enable = mkForce false;
# Auto-login as root.
services.xserver.displayManager.gdm.autoLogin = {
enable = true;
user = "root";
};
}