Compare commits

...

1 commit

Author SHA1 Message Date
Harald Hoyer f9b03ff442 login shell to fish
remove exec workaround

Signed-off-by: Harald Hoyer <harald@hoyer.xyz>
2024-03-25 11:04:12 +01:00

View file

@ -73,9 +73,6 @@ in
}".source = }".source =
cfg.icon; cfg.icon;
}; };
extraOptions.programs.bash.initExtra = ''
[[ $WANT_BASH ]] || exec ${pkgs.fish}/bin/fish -l
'';
}; };
users.users.${cfg.name} = users.users.${cfg.name} =
@ -88,7 +85,7 @@ in
home = "/home/${cfg.name}"; home = "/home/${cfg.name}";
group = "users"; group = "users";
shell = pkgs.bash; shell = pkgs.fish;
# Arbitrary user ID to use for the user. Since I only # Arbitrary user ID to use for the user. Since I only
# have a single user on my machines this won't ever collide. # have a single user on my machines this won't ever collide.