1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-31 04:04:45 +00:00

improve startup resiliency : wait for systems.determinate.nix to mount /nix

This commit is contained in:
Éric Peiffer 2025-03-06 21:37:57 +01:00
parent 3b08b3de04
commit 659cbfd30c

View file

@ -116,14 +116,14 @@ in
config = mkIf cfg.enable {
launchd.daemons.adguardhome = {
script = ''
# Wait for /nix/store to be mounted
while [ ! -x "${lib.getExe cfg.package}" ]; do
sleep 1
done
exec ${lib.getExe cfg.package} -c ${configFile} --no-check-update ${builtins.concatStringsSep " " cfg.extraArgs}
'';
serviceConfig = {
ProgramArguments = [
"${lib.getExe cfg.package}"
"-c"
"${configFile}"
"--no-check-update"
] ++ cfg.extraArgs;
KeepAlive = true;
RunAtLoad = true;
StandardErrorPath = cfg.logFile;