From 3b07d7af031a8134e4680130bb42897c0ddd05e6 Mon Sep 17 00:00:00 2001 From: sefidel Date: Fri, 15 Sep 2023 23:59:10 +0900 Subject: feat(systems/cobalt): passwordFile -> hashedPasswordFile --- systems/cobalt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'systems') 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" ]; -- cgit 1.4.1