1 # This module defines a NixOS installation CD that contains GNOME.
6 imports = [ ./installation-cd-graphical-base.nix ];
8 isoImage.edition = "gnome";
10 services.xserver.desktopManager.gnome = {
11 # Add Firefox and other tools useful for installation to the launcher
12 favoriteAppsOverride = ''
14 favorite-apps=[ 'firefox.desktop', 'nixos-manual.desktop', 'org.gnome.Terminal.desktop', 'org.gnome.Nautilus.desktop', 'gparted.desktop' ]
19 services.xserver.displayManager.gdm = {
21 # autoSuspend makes the machine automatically suspend after inactivity.
22 # It's possible someone could/try to ssh'd into the machine and obviously
23 # have issues because it's inactive.
25 # * https://github.com/NixOS/nixpkgs/pull/63790
26 # * https://gitlab.gnome.org/GNOME/gnome-control-center/issues/22
30 services.displayManager.autoLogin = {