diff --git a/hosts/box/user.nix b/hosts/box/user.nix index 51f1938..d17b722 100644 --- a/hosts/box/user.nix +++ b/hosts/box/user.nix @@ -10,5 +10,6 @@ users.users.boxuser = { ]; }; +users.users.boxuser.shell = pkgs.bash; users.groups.boxuser = {}; } diff --git a/hosts/puter/packages.nix b/hosts/puter/packages.nix index 2ae9454..cc96d97 100644 --- a/hosts/puter/packages.nix +++ b/hosts/puter/packages.nix @@ -15,6 +15,7 @@ ../../modules/userapps/productivity.nix ]; + users.users.user.shell = pkgs.bash; users.users.user = { isNormalUser = true; description = "user"; diff --git a/modules/common/shell.nix b/modules/common/shell.nix index cf715ea..4cbd066 100644 --- a/modules/common/shell.nix +++ b/modules/common/shell.nix @@ -6,7 +6,6 @@ }: { environment.variables.EDITOR = "nvim"; - users.users.user.shell = pkgs.bash; environment.shells = with pkgs; [bash]; programs.bash = { interactiveShellInit = ''