Jump to content

GDM: Difference between revisions

From Official NixOS Wiki
Likivik (talk | contribs)
Basic page for GDM: installation, basic configuration, links to scattered GDM docs
DHCP (talk | contribs)
m See also: remove blank line
 
Line 32: Line 32:
* [https://matrix.to/#/#pages:gnome.org Gnome on Matrix]
* [https://matrix.to/#/#pages:gnome.org Gnome on Matrix]
* [https://discourse.gnome.org Gnome Discourse]
* [https://discourse.gnome.org Gnome Discourse]


== References ==
== References ==
[[Category:Display Manager]]
[[Category:Display Manager]]
[[Category:GNOME]]
[[Category:GNOME]]

Latest revision as of 14:14, 19 July 2026

GNOME Display Manager (GDM) is a default display manager of GNOME desktop environment, but can be used independently as well.

Installation

GDM can be enabled as the display manager with this line.

❄︎ /etc/nixos/configuration.nix
services.displayManager.gdm.enable = true;

Configuration

❄︎ /etc/nixos/configuration.nix
services.displayManager.gdm = {
  enable = true;
};

# Enable autologin
services.displayManager.autoLogin = {
    enable = true;
    user = "username";
  };

# Graphical session to pre-select 
services.displayManager.defaultSession = "gnome";

Tips and tricks

Troubleshooting

See also

There is currently no comprehensive documentation for gdm, hence, here is a list of few decent places to get info or ask questions specific to GDM/Gnome.

References