infrastructure/hosts/aurum/system/users/default.nix

18 lines
368 B
Nix
Raw Normal View History

2024-01-15 15:50:55 +00:00
{pkgs, ...}: {
# disable user creation/deletion
users.mutableUsers = false;
# 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"];
shell = pkgs.fish; # set login shell to fish
2024-01-15 15:50:55 +00:00
};
};
}