GNOME: Difference between revisions
m →Installation: Fix grammar. |
m Add troubleshooting: GDM does not show user |
||
Line 217: | Line 217: | ||
systemd.services."getty@tty1".enable = false; | systemd.services."getty@tty1".enable = false; | ||
systemd.services."autovt@tty1".enable = false; | systemd.services."autovt@tty1".enable = false; | ||
}|name=/etc/nixos/configuration.nix|lang=nix}} | |||
=== GDM does not show user === | |||
The GDM (GNOME Display Manager) will not display a user if their default shell is not listed in <code>/etc/shells</code>. If your shell, such as zsh, is not included in <code>/etc/shells</code>, you need to add it to the configuration.{{File|3={ | |||
environment.shells = with pkgs; [ zsh ]; | |||
}|name=/etc/nixos/configuration.nix|lang=nix}} | }|name=/etc/nixos/configuration.nix|lang=nix}} | ||
: | : |