From cea58927ced3f5d443d7e11717a9932cabbd3e88 Mon Sep 17 00:00:00 2001 From: Tyler Kelley Date: Thu, 4 Apr 2024 01:05:42 -0500 Subject: [PATCH] Update users so the new example user is commented out --- users/users.nix | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/users/users.nix b/users/users.nix index 32dfbf1..7f780ef 100644 --- a/users/users.nix +++ b/users/users.nix @@ -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 + # 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; []; + # }; }; }