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