(aurum/system) set fish as default sheel for user laurent

This commit is contained in:
Laureηt 2024-03-31 16:24:42 +02:00
parent 89210287bc
commit 2920b72f36
Signed by: Laurent
SSH key fingerprint: SHA256:pb5NrYg80So5z9hmqQFPmp//sgr+DFeJkKhmGyU2NLk

View file

@ -2,13 +2,16 @@
# disable user creation/deletion # disable user creation/deletion
users.mutableUsers = false; users.mutableUsers = false;
# enable the fish shell globally
programs.fish.enable = true;
# configure users # configure users
users = { users = {
users.laurent = { users.laurent = {
isNormalUser = true; isNormalUser = true;
initialPassword = "laurent"; initialPassword = "laurent";
extraGroups = ["wheel" "video"]; extraGroups = ["wheel" "video"];
shell = pkgs.zsh; shell = pkgs.fish; # set login shell to fish
}; };
}; };
} }