diff --git a/README.md b/README.md index 9265a62..8284e7e 100644 --- a/README.md +++ b/README.md @@ -369,7 +369,7 @@ e.g. inside your `flake.nix` file: { users.users.user1 = { isNormalUser = true; - passwordFile = config.age.secrets.secret1.path; + hashedPasswordFile = config.age.secrets.secret1.path; }; } ``` @@ -416,7 +416,7 @@ The home-manager module follows the same general principles as the NixOS module { programs.some-program = { enable = true; - passwordFile = config.age.secrets.example-secret.path; + hashedPasswordFile = config.age.secrets.example-secret.path; }; } ``` @@ -471,7 +471,7 @@ Example referring to path: { users.users.ryantm = { isNormalUser = true; - passwordFile = config.age.secrets.passwordfile-ryantm.path; + hashedPasswordFile = config.age.secrets.passwordfile-ryantm.path; }; } ``` diff --git a/doc/reference.md b/doc/reference.md index 2419559..b578f94 100644 --- a/doc/reference.md +++ b/doc/reference.md @@ -46,7 +46,7 @@ Example referring to path: { users.users.ryantm = { isNormalUser = true; - passwordFile = config.age.secrets.passwordfile-ryantm.path; + hashedPasswordFile = config.age.secrets.passwordfile-ryantm.path; }; } ``` diff --git a/doc/tutorial.md b/doc/tutorial.md index 751afa9..bdf4dc1 100644 --- a/doc/tutorial.md +++ b/doc/tutorial.md @@ -46,7 +46,7 @@ { users.users.user1 = { isNormalUser = true; - passwordFile = config.age.secrets.secret1.path; + hashedPasswordFile = config.age.secrets.secret1.path; }; } ``` diff --git a/test/integration.nix b/test/integration.nix index 3e3230c..87210a7 100644 --- a/test/integration.nix +++ b/test/integration.nix @@ -42,7 +42,7 @@ pkgs.nixosTest { users = { user1 = { isNormalUser = true; - passwordFile = config.age.secrets.passwordfile-user1.path; + hashedPasswordFile = config.age.secrets.passwordfile-user1.path; uid = 1000; }; };