➕ (aurum/system) set fish as default sheel for user laurent
This commit is contained in:
parent
89210287bc
commit
2920b72f36
|
@ -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
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue