From b0facdb8b8358bdd7d6b22444b980d3c448cd9b3 Mon Sep 17 00:00:00 2001 From: jackschu <31808950+jackschu@users.noreply.github.com> Date: Tue, 24 Feb 2026 09:54:23 -0700 Subject: [PATCH] fix(darwin): order launchctl bootstrap after home-manager setupLaunchAgents --- modules/home-manager/sops.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/home-manager/sops.nix b/modules/home-manager/sops.nix index be11f69..fead808 100644 --- a/modules/home-manager/sops.nix +++ b/modules/home-manager/sops.nix @@ -412,7 +412,7 @@ in let domain-target = "gui/$(id -u ${config.home.username})"; in - '' + lib.hm.dag.entryAfter [ "setupLaunchAgents" ] '' /bin/launchctl bootout ${domain-target}/org.nix-community.home.sops-nix && true /bin/launchctl bootstrap ${domain-target} ${config.home.homeDirectory}/Library/LaunchAgents/org.nix-community.home.sops-nix.plist '';