diff options
Diffstat (limited to 'systems/cobalt')
-rw-r--r-- | systems/cobalt/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/systems/cobalt/default.nix b/systems/cobalt/default.nix index 28e0dce..64d778b 100644 --- a/systems/cobalt/default.nix +++ b/systems/cobalt/default.nix @@ -117,13 +117,13 @@ in sops.secrets.root-password.neededForUsers = true; sops.secrets.sefidel-password.neededForUsers = true; - users.users.root.passwordFile = config.sops.secrets.root-password.path; + users.users.root.hashedPasswordFile = config.sops.secrets.root-password.path; users.users.root.openssh.authorizedKeys.keys = maintainerKeys; users.users.sefidel = { isNormalUser = true; shell = pkgs.zsh; - passwordFile = config.sops.secrets.sefidel-password.path; + hashedPasswordFile = config.sops.secrets.sefidel-password.path; openssh.authorizedKeys.keys = sefidelKeys; extraGroups = [ "wheel" ]; |