2024-01-15 15:50:55 +00:00
|
|
|
{pkgs, ...}: {
|
|
|
|
# disable user creation/deletion
|
|
|
|
users.mutableUsers = false;
|
|
|
|
|
2024-03-31 14:24:42 +00:00
|
|
|
# enable the fish shell globally
|
|
|
|
programs.fish.enable = true;
|
|
|
|
|
2024-01-15 15:50:55 +00:00
|
|
|
# configure users
|
|
|
|
users = {
|
|
|
|
users.laurent = {
|
|
|
|
isNormalUser = true;
|
|
|
|
initialPassword = "laurent";
|
|
|
|
extraGroups = ["wheel" "video"];
|
2024-03-31 14:24:42 +00:00
|
|
|
shell = pkgs.fish; # set login shell to fish
|
2024-01-15 15:50:55 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|