dotfiles/modules/system/user.nix

19 lines
343 B
Nix
Raw Normal View History

2022-04-29 01:56:21 +00:00
{ user, ... }: {
# Define a user account. Don't forget to set a password with passwd.
users.users.${user} = {
# Create a home directory for human user
isNormalUser = true;
# Automatically create a password to start
initialPassword = "changeme";
extraGroups = [
"wheel" # Sudo privileges
];
};
}