From d199eaf7b2347feb41ac001d2bff909f23d37130 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Thu, 30 Nov 2023 03:54:39 +0100 Subject: [PATCH] base: users: don't use deprecated passwordFile opt --- base/users.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base/users.nix b/base/users.nix index 1e9d845..acbbc0d 100644 --- a/base/users.nix +++ b/base/users.nix @@ -8,10 +8,10 @@ in { users.mutableUsers = false; users.users.root = { - passwordFile = config.age.secrets."users/root-hashed-password".path; + hashedPasswordFile = config.age.secrets."users/root-hashed-password".path; }; users.users.alarsyo = { - passwordFile = config.age.secrets."users/alarsyo-hashed-password".path; + hashedPasswordFile = config.age.secrets."users/alarsyo-hashed-password".path; isNormalUser = true; extraGroups = [ "media"