users: switch to ssh as default shell

My efforts to use nushell as a default shell have been
for naught so far. It silently breaks stuff you wouln't
expect it to break, like shipping environment variables
and stuff.
This commit is contained in:
Bloxx12 2025-07-25 16:56:46 +02:00
commit 512921e8f6

View file

@ -57,6 +57,8 @@ in
}; };
}; };
config = { config = {
# environment.shells = [ pkgs.nushell ];
programs.zsh.enable = true;
users = { users = {
mutableUsers = true; mutableUsers = true;
users = { users = {
@ -71,7 +73,7 @@ in
"nix" "nix"
"docker" "docker"
]; ];
shell = pkgs.nushell; shell = pkgs.zsh;
}; };
}; };
}; };