From 65f710a1793345b0c48b9058f6dad74817562548 Mon Sep 17 00:00:00 2001 From: Jo Date: Thu, 22 May 2025 02:09:21 +0200 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20Move=20hashedPasswordFile?= =?UTF-8?q?=20into=20inherit=20section?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/nixos/users/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/nixos/users/default.nix b/modules/nixos/users/default.nix index 2fdee80..9f900e7 100644 --- a/modules/nixos/users/default.nix +++ b/modules/nixos/users/default.nix @@ -49,8 +49,7 @@ in { users.users = lib.mapAttrs (username: userConfig: mkIf userConfig.enable { name = username; - hashedPasswordFile = userConfig.hashedPasswordFile; - inherit (userConfig) isNormalUser isSystemUser initialPassword password extraGroups; + inherit (userConfig) isNormalUser isSystemUser initialPassword hashedPasswordFile password extraGroups; }) cfg;