mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
22 lines
420 B
Nix
22 lines
420 B
Nix
# This module defines a NixOS installation CD that contains X11 and
|
|
# GNOME 3.
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
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";
|
|
};
|
|
|
|
}
|