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;