19 lines
542 B
Nix
19 lines
542 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;
|
||
hashedPassword = "$6$RTOXVXRP1iLIXnQb$rVtTeqlJ7g3AcZgftmVdKFnT2ggCsnVayPlT4beLST9Oz2LHGT2fdcOC/yaQkISK3wzFLqh47fSHgQvRUWpl41";
|
||
extraGroups = [ "networkmanager" "wheel" ];
|
||
};
|
||
};
|
||
}
|
||
|