Add home manager configuraiton
This commit is contained in:
parent
92c095c8a5
commit
558ecfabd3
5 changed files with 90 additions and 26 deletions
|
@ -12,19 +12,21 @@
|
|||
}:
|
||||
|
||||
{
|
||||
security.polkit = { enable = true; };
|
||||
users = {
|
||||
inherit mutableUsers;
|
||||
users.${username} = {
|
||||
home = homedir;
|
||||
description = "Nathan McCarty";
|
||||
shell = pkgs.nushell;
|
||||
isNormalUser = true;
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
];
|
||||
hashedPassword = "$6$ShBAPGwzKZuB7eEv$cbb3erUqtVGFo/Vux9UwT2NkbVG9VGCxJxPiZFYL0DIc3t4GpYxjkM0M7fFnh.6V8MoSKLM/TvOtzdWbYwI58.";
|
||||
};
|
||||
security.polkit = {
|
||||
enable = true;
|
||||
};
|
||||
users = {
|
||||
inherit mutableUsers;
|
||||
users.${username} = {
|
||||
home = homedir;
|
||||
description = "Nathan McCarty";
|
||||
shell = pkgs.nushell;
|
||||
isNormalUser = true;
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
];
|
||||
hashedPassword = "$6$ShBAPGwzKZuB7eEv$cbb3erUqtVGFo/Vux9UwT2NkbVG9VGCxJxPiZFYL0DIc3t4GpYxjkM0M7fFnh.6V8MoSKLM/TvOtzdWbYwI58.";
|
||||
};
|
||||
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue