From fc4e22f5d40ff2aa9ed53b4705d3304c92b9003b Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Fri, 14 Mar 2025 22:48:32 -0400 Subject: [PATCH] Use QueueDirectories to wait for /nix/store for keepalived services This allows to get rid of wait4path and sh from the execution path for the services. Which simplifies permissions configuration for nix-daemon, among other things. (No longer needed to grant Full Disk Access / App Management to /bin/sh for nix-daemon to deal with .app bundles.) Related: https://github.com/NixOS/nix/issues/6765 Signed-off-by: Ihar Hrachyshka --- modules/launchd/default.nix | 19 +++++++++++++------ tests/autossh.nix | 3 +-- tests/services-lorri.nix | 6 ++---- tests/services-nix-daemon.nix | 4 +--- 4 files changed, 17 insertions(+), 15 deletions(-) diff --git a/modules/launchd/default.nix b/modules/launchd/default.nix index 64b6af70..3ee777be 100644 --- a/modules/launchd/default.nix +++ b/modules/launchd/default.nix @@ -79,19 +79,26 @@ let }; }; - config = { + config = let + keepAlive = (config.serviceConfig.KeepAlive != false && config.serviceConfig.KeepAlive != null); + in { command = mkIf (config.script != "") (pkgs.writeScript "${name}-start" '' #! ${stdenv.shell} ${config.script} ''); + serviceConfig.QueueDirectories = mkIf keepAlive [ "/nix/store" ]; serviceConfig.Label = mkDefault "${cfg.labelPrefix}.${name}"; - serviceConfig.ProgramArguments = mkIf (config.command != "") [ - "/bin/sh" - "-c" - "/bin/wait4path /nix/store && exec ${config.command}" - ]; + serviceConfig.ProgramArguments = mkIf (config.command != "") ( + if keepAlive then [ + "${config.command}" + ] else [ + "/bin/sh" + "-c" + "/bin/wait4path /nix/store && exec ${config.command}" + ] + ); serviceConfig.EnvironmentVariables = mkIf (env != {}) env; }; }; diff --git a/tests/autossh.nix b/tests/autossh.nix index 5279bf9d..404bddab 100644 --- a/tests/autossh.nix +++ b/tests/autossh.nix @@ -12,8 +12,7 @@ test = '' plist=${config.out}/Library/LaunchDaemons/org.nixos.autossh-foo.plist test -f $plist - grep '/bin/wait4path /nix/store && exec /nix/store/.*/bin/autossh ' $plist - grep '/bin/wait4path /nix/store && exec.*-i /some/key ' $plist + grep '/nix/store/.*/bin/autossh.*-i /some/key' $plist tr -d '\n\t ' <$plist |grep 'KeepAlive' ''; } diff --git a/tests/services-lorri.nix b/tests/services-lorri.nix index 7d301524..94503e0f 100644 --- a/tests/services-lorri.nix +++ b/tests/services-lorri.nix @@ -33,10 +33,8 @@ in &2 grep "org.nixos.nix-daemon" ${config.out}/Library/LaunchDaemons/org.nixos.nix-daemon.plist - grep "/bin/wait4path" ${config.out}/Library/LaunchDaemons/org.nixos.nix-daemon.plist - grep "&&" ${config.out}/Library/LaunchDaemons/org.nixos.nix-daemon.plist - grep "exec ${nix}/bin/nix-daemon" ${config.out}/Library/LaunchDaemons/org.nixos.nix-daemon.plist + grep "${nix}/bin/nix-daemon" ${config.out}/Library/LaunchDaemons/org.nixos.nix-daemon.plist grep "KeepAlive" ${config.out}/Library/LaunchDaemons/org.nixos.nix-daemon.plist (! grep "Sockets" ${config.out}/Library/LaunchDaemons/org.nixos.nix-daemon.plist)