diff --git a/users/default.nix b/users/default.nix index 490373e..0cf4c51 100644 --- a/users/default.nix +++ b/users/default.nix @@ -47,11 +47,11 @@ in { description = cfg.realName or user; - password = config.sops.secrets."${user}/userPassword"; + hashedPasswordFile = config.sops.secrets."${user}/userPassword".path; isNormalUser = true; shell = pkgs."${cfg.shell}"; extraGroups = cfg.extraGroups or [ ]; }; - }) cfg.users + }) cfg.usersList ); }