From 24d41e829efb8cd7b58bd96cc8ce875b96df47e1 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Thu, 28 Sep 2023 15:57:04 +0000 Subject: [PATCH] modules: system: users: fix deprecated option name --- modules/system/users/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/system/users/default.nix b/modules/system/users/default.nix index 27557bd..655b31e 100644 --- a/modules/system/users/default.nix +++ b/modules/system/users/default.nix @@ -17,11 +17,11 @@ in users = { root = { - passwordFile = secrets."users/root/hashed-password".path; + hashedPasswordFile = secrets."users/root/hashed-password".path; }; ${config.my.user.name} = { - passwordFile = secrets."users/ambroisie/hashed-password".path; + hashedPasswordFile = secrets."users/ambroisie/hashed-password".path; description = "Bruno BELANYI"; isNormalUser = true; shell = pkgs.zsh;