about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2023-09-15 23:57:31 +0900
committersefidel <contact@sefidel.net>2023-09-15 23:57:31 +0900
commit82e916f4a0790c82f3afd89518c64e8bcded803f (patch)
tree67c6fa74934666d3d2ef702f1d098e2dae7cd6ff /nixos
parent75d687e46e9e140ab141e6dfa0abd0913ded8888 (diff)
downloadnixrc-82e916f4a0790c82f3afd89518c64e8bcded803f.tar.gz
nixrc-82e916f4a0790c82f3afd89518c64e8bcded803f.zip
feat(nixos): passwordFile -> hashedPasswordFile
Diffstat (limited to 'nixos')
-rw-r--r--nixos/alpha/configuration.nix4
-rw-r--r--nixos/haruka/configuration.nix4
-rw-r--r--nixos/kompakt/configuration.nix4
3 files changed, 6 insertions, 6 deletions
diff --git a/nixos/alpha/configuration.nix b/nixos/alpha/configuration.nix
index e9fd721..bac3f42 100644
--- a/nixos/alpha/configuration.nix
+++ b/nixos/alpha/configuration.nix
@@ -281,11 +281,11 @@
   fileSystems."/persist".neededForBoot = true;
 
   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"
diff --git a/nixos/haruka/configuration.nix b/nixos/haruka/configuration.nix
index 37327c3..923cc9f 100644
--- a/nixos/haruka/configuration.nix
+++ b/nixos/haruka/configuration.nix
@@ -280,11 +280,11 @@
   fileSystems."/persist".neededForBoot = true;
 
   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"
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.
     };