18 lines
404 B
Nix
18 lines
404 B
Nix
{ config, inputs, ... }: {
|
||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||
sops.secrets = {
|
||
jay_password_hash = { };
|
||
};
|
||
|
||
users = {
|
||
mutableUsers = false;
|
||
users.jay = {
|
||
isNormalUser = true;
|
||
description = "jay";
|
||
hashedPasswordFile = config.sops.secrets.jay_password_hash.path;
|
||
extraGroups = [ "networkmanager" "wheel" ];
|
||
};
|
||
};
|
||
}
|
||
|