From d77df8748d70372be7dd9a20fcad834ff7eb3d5c Mon Sep 17 00:00:00 2001 From: jay Date: Sat, 12 Jul 2025 09:47:28 -0400 Subject: [PATCH] Fix incorrect keyname. --- nodes/hosts/common/system/sops.nix | 2 +- nodes/hosts/common/system/users.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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" ]; };