From cd03862e4b70583603eea85e1926939c817154d2 Mon Sep 17 00:00:00 2001 From: mjallen18 Date: Sat, 3 Jan 2026 11:22:12 -0600 Subject: [PATCH] pi stuff --- modules/nixos/user/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/nixos/user/default.nix b/modules/nixos/user/default.nix index c41c516..37347a2 100644 --- a/modules/nixos/user/default.nix +++ b/modules/nixos/user/default.nix @@ -18,6 +18,8 @@ let ) then defaultPasswordFile + else + config.${namespace}.user.hashedPasswordFile ); }; @@ -70,7 +72,7 @@ in hashedPassword = mkOpt (nullOr str) null "Hashed password for the user."; hashedPasswordFile = - mkOpt (nullOr path) defaultPasswordFile + mkOpt (nullOr path) null "Path to the password file for this user account"; mutableUsers = mkBoolOpt false "Whether users are mutable (can be modified after creation).";