From 82e916f4a0790c82f3afd89518c64e8bcded803f Mon Sep 17 00:00:00 2001 From: sefidel Date: Fri, 15 Sep 2023 23:57:31 +0900 Subject: feat(nixos): passwordFile -> hashedPasswordFile --- nixos/kompakt/configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nixos/kompakt/configuration.nix') diff --git a/nixos/kompakt/configuration.nix b/nixos/kompakt/configuration.nix index 41b5e01..31a0a5c 100644 --- a/nixos/kompakt/configuration.nix +++ b/nixos/kompakt/configuration.nix @@ -143,11 +143,11 @@ users.mutableUsers = false; users.users = { - root.passwordFile = config.sops.secrets.root-password.path; + root.hashedPasswordFile = config.sops.secrets.root-password.path; sefidel = { isNormalUser = true; shell = pkgs.zsh; - passwordFile = config.sops.secrets.sefidel-password.path; + hashedPasswordFile = config.sops.secrets.sefidel-password.path; extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user. }; -- cgit 1.4.1