infrastructure/hosts/aurum/system/users/default.nix
2024-01-15 16:50:55 +01:00

15 lines
274 B
Nix

{pkgs, ...}: {
# disable user creation/deletion
users.mutableUsers = false;
# configure users
users = {
users.laurent = {
isNormalUser = true;
initialPassword = "laurent";
extraGroups = ["wheel" "video"];
shell = pkgs.zsh;
};
};
}