From 512921e8f6a584791aafa654253de98da6b964be Mon Sep 17 00:00:00 2001 From: Bloxx12 Date: Fri, 25 Jul 2025 16:56:46 +0200 Subject: [PATCH] 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. --- modules/other/users.mod.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/other/users.mod.nix b/modules/other/users.mod.nix index 1189e55..091e76c 100644 --- a/modules/other/users.mod.nix +++ b/modules/other/users.mod.nix @@ -57,6 +57,8 @@ in }; }; config = { + # environment.shells = [ pkgs.nushell ]; + programs.zsh.enable = true; users = { mutableUsers = true; users = { @@ -71,7 +73,7 @@ in "nix" "docker" ]; - shell = pkgs.nushell; + shell = pkgs.zsh; }; }; };