From 5df2e0d3f5841da395c1208907fc0a09f10e9353 Mon Sep 17 00:00:00 2001 From: jay Date: Thu, 10 Jul 2025 14:15:55 +0000 Subject: [PATCH] Fix password problem. --- nodes/hosts/common/system/users.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/nodes/hosts/common/system/users.nix b/nodes/hosts/common/system/users.nix index d17efce..0a05a9a 100644 --- a/nodes/hosts/common/system/users.nix +++ b/nodes/hosts/common/system/users.nix @@ -1,15 +1,16 @@ { config, inputs, ... }: { # Define a user account. Don't forget to set a password with ‘passwd’. - sops.secrets = { - jay_password_hash = { }; - }; + #sops.secrets = { + # jay_password_hash = { }; + #}; users = { - mutableUsers = false; + #mutableUsers = false; users.jay = { isNormalUser = true; description = "jay"; - hashedPasswordFile = config.sops.secrets.jay_password_hash.path; + #hashedPasswordFile = config.sops.secrets.jay_password_hash.path; + hashedPassword = "$6$RTOXVXRP1iLIXnQb$rVtTeqlJ7g3AcZgftmVdKFnT2ggCsnVayPlT4beLST9Oz2LHGT2fdcOC/yaQkISK3wzFLqh47fSHgQvRUWpl41"; extraGroups = [ "networkmanager" "wheel" ]; }; };