diff --git a/nodes/hosts/common/system/sops.nix b/nodes/hosts/common/system/sops.nix index 49479a7..7d60c43 100644 --- a/nodes/hosts/common/system/sops.nix +++ b/nodes/hosts/common/system/sops.nix @@ -2,7 +2,7 @@ sops = { defaultSopsFile = ../../../../private/secrets.yaml; secrets = { - jay_password = { + jay_password_hash = { neededForUsers = true; }; }; diff --git a/nodes/hosts/common/system/users.nix b/nodes/hosts/common/system/users.nix index b5ffaba..cd753cf 100644 --- a/nodes/hosts/common/system/users.nix +++ b/nodes/hosts/common/system/users.nix @@ -9,7 +9,7 @@ users.jay = { isNormalUser = true; description = "jay"; - hashedPasswordFile = config.sops.secrets.jay_password.path; + hashedPasswordFile = config.sops.secrets.jay_password_hash.path; #hashedPassword = "$6$RTOXVXRP1iLIXnQb$rVtTeqlJ7g3AcZgftmVdKFnT2ggCsnVayPlT4beLST9Oz2LHGT2fdcOC/yaQkISK3wzFLqh47fSHgQvRUWpl41"; extraGroups = [ "networkmanager" "wheel" ]; };