diff --git a/system/users.nix b/system/users.nix index e2f4cdf..61ac0bf 100644 --- a/system/users.nix +++ b/system/users.nix @@ -4,6 +4,18 @@ users.users.chris = { uid = 1000; isNormalUser = true; + hashedPasswordFile = "/persist/passwords/chris"; + shell = pkgs.zsh; + extraGroups = [ + "chris" + "wheel" + "networkmanager" + "docker" + ]; + }; + users.users.test = { + uid = 1001; + isNormalUser = true; # hashedPasswordFile = "/persist/passwords/chris"; initialPassword = "changeme123"; shell = pkgs.zsh;