From c48a167396883e7fc46b9b63cf5f5de98b754d7e Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Fri, 15 Sep 2023 14:18:11 +0200 Subject: [PATCH] base: use renamed password file option --- modules/base/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/base/default.nix b/modules/base/default.nix index 0674e314..fdc43802 100644 --- a/modules/base/default.nix +++ b/modules/base/default.nix @@ -121,9 +121,9 @@ home = "/home/charlotte"; description = "Charlotte Van Petegem"; extraGroups = [ "systemd-journal" ]; - passwordFile = config.age.secrets."passwords/users/charlotte".path; + hashedPasswordFile = config.age.secrets."passwords/users/charlotte".path; }; - root.passwordFile = config.age.secrets."passwords/users/root".path; + root.hashedPasswordFile = config.age.secrets."passwords/users/root".path; }; };