From 88a08936c088ced06612450cdd53b17c20cf003d Mon Sep 17 00:00:00 2001 From: imxyy_soope_ Date: Sun, 13 Apr 2025 15:24:38 +0800 Subject: [PATCH] fix: typo hashedPasswordPath -> hashedPasswordFile again --- config/hosts/imxyy-nix-server/nixos.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/hosts/imxyy-nix-server/nixos.nix b/config/hosts/imxyy-nix-server/nixos.nix index 7431e2d..574da6f 100644 --- a/config/hosts/imxyy-nix-server/nixos.nix +++ b/config/hosts/imxyy-nix-server/nixos.nix @@ -28,5 +28,5 @@ }; users.users.${username}.hashedPasswordFile = lib.mkForce config.sops.secrets.imxyy-nix-server-hashed-password.path; - users.users.root.hashedPasswordPath = lib.mkForce config.sops.secrets.imxyy-nix-server-hashed-password.path; + users.users.root.hashedPasswordFile = lib.mkForce config.sops.secrets.imxyy-nix-server-hashed-password.path; }