Update users so the new example user is commented out

This commit is contained in:
Tyler Kelley 2024-04-04 01:05:42 -05:00
parent 0af119e2cd
commit cea58927ce

View File

@ -14,15 +14,16 @@ in {
ignoreShellProgramCheck = true; ignoreShellProgramCheck = true;
packages = with pkgs; []; packages = with pkgs; [];
}; };
"newuser" = { # "newuser" = {
homeMode = "755"; # homeMode = "755";
hashedPassword = "$6$YdPBODxytqUWXCYL$AHW1U9C6Qqkf6PZJI54jxFcPVm2sm/XWq3Z1qa94PFYz0FF.za9gl5WZL/z/g4nFLQ94SSEzMg5GMzMjJ6Vd7."; # You can get this by running - mkpasswd -m sha-512 <password>
isNormalUser = true; # hashedPassword = "$6$YdPBODxytqUWXCYL$AHW1U9C6Qqkf6PZJI54jxFcPVm2sm/XWq3Z1qa94PFYz0FF.za9gl5WZL/z/g4nFLQ94SSEzMg5GMzMjJ6Vd7.";
description = "New user account"; # isNormalUser = true;
extraGroups = [ "networkmanager" "wheel" "libvirtd" ]; # description = "New user account";
shell = pkgs.${theShell}; # extraGroups = [ "networkmanager" "wheel" "libvirtd" ];
ignoreShellProgramCheck = true; # shell = pkgs.${theShell};
packages = with pkgs; []; # ignoreShellProgramCheck = true;
}; # packages = with pkgs; [];
# };
}; };
} }