From 1cd22ca95ef25d2969945eaea41bb76c0ef202a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nina=20Chlo=C3=A9=20Kassandra=20Rei=C3=9F?= Date: Fri, 27 Feb 2026 20:21:43 +0100 Subject: [PATCH] Add password hash to manager --- home-manager.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/home-manager.nix b/home-manager.nix index f96b404..d59ec1f 100644 --- a/home-manager.nix +++ b/home-manager.nix @@ -17,6 +17,7 @@ in extraGroups = [ "networkmanager" "wheel" "docker" "scanner" "lp"]; packages = with pkgs; []; shell = pkgs.zsh; + hashedPassword = profile.hashed-password; }; home-manager.backupFileExtension = "bck.lck";