diff options
author | sefidel <contact@sefidel.net> | 2023-09-15 23:57:31 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-09-15 23:57:31 +0900 |
commit | 82e916f4a0790c82f3afd89518c64e8bcded803f (patch) | |
tree | 67c6fa74934666d3d2ef702f1d098e2dae7cd6ff /nixos/kompakt | |
parent | 75d687e46e9e140ab141e6dfa0abd0913ded8888 (diff) | |
download | nixrc-82e916f4a0790c82f3afd89518c64e8bcded803f.tar.gz nixrc-82e916f4a0790c82f3afd89518c64e8bcded803f.zip |
feat(nixos): passwordFile -> hashedPasswordFile
Diffstat (limited to 'nixos/kompakt')
-rw-r--r-- | nixos/kompakt/configuration.nix | 4 |
1 files changed, 2 insertions, 2 deletions
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. }; |