Files
home-manager/modules/misc/news/2026/06/2026-06-18_02-02-00.nix
T
Austin Horstman 165228b0ef launchd: restore gui domain defaults
User-domain agents are not rediscovered from the user LaunchAgents directory after reboot. Let built-in agents inherit the GUI default while keeping explicit user-domain configuration available.
2026-07-15 10:29:26 -05:00

14 lines
421 B
Nix

{ config, pkgs, ... }:
{
time = "2026-06-18T02:02:00+00:00";
condition = pkgs.stdenv.hostPlatform.isDarwin && config.launchd.enable;
message = ''
Home Manager launchd agents now support the
`launchd.agents.<name>.domain` option. Agents use the GUI launchd domain by
default. Set `launchd.agents.<name>.domain = "user"` for agents that should
run without an active graphical login session.
'';
}