Set /etc/shells so GDM will be happy

This commit is contained in:
Joshua Yuen 2025-07-27 16:28:34 -04:00
parent db25786322
commit 313457b121
Signed by: josh
GPG Key ID: 502720BC22ED411C
1 changed files with 3 additions and 0 deletions

View File

@ -40,5 +40,8 @@ in
ignoreShellProgramCheck = true; ignoreShellProgramCheck = true;
}; };
# Set /etc/shells so GDM will show our user when ZSH is selected
environment.shells = with pkgs; [ pkgs.${shellCfg.defaultShell} ];
nix.settings.allowed-users = [ "${username}" ]; nix.settings.allowed-users = [ "${username}" ];
} }