nixpkgs/nixos/modules/installer/cd-dvd/installation-cd-graphical-gnome.nix

32 lines
760 B
Nix
Raw Normal View History

# This module defines a NixOS installation CD that contains GNOME.
2015-10-08 12:53:37 +00:00
{ lib, ... }:
2015-10-08 12:53:37 +00:00
with lib;
{
2018-09-11 06:23:16 +00:00
imports = [ ./installation-cd-graphical-base.nix ];
2015-10-08 12:53:37 +00:00
isoImage.edition = "gnome";
2018-09-11 06:23:16 +00:00
services.xserver.desktopManager.gnome3.enable = true;
2015-10-08 12:53:37 +00:00
services.xserver.displayManager = {
gdm = {
enable = true;
# autoSuspend makes the machine automatically suspend after inactivity.
# It's possible someone could/try to ssh'd into the machine and obviously
# have issues because it's inactive.
# See:
# * https://github.com/NixOS/nixpkgs/pull/63790
# * https://gitlab.gnome.org/GNOME/gnome-control-center/issues/22
autoSuspend = false;
};
autoLogin = {
enable = true;
user = "nixos";
};
2015-10-08 12:53:37 +00:00
};
}