19 lines
356 B
Nix
Raw Normal View History

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