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:
parent
3b08b3de04
commit
659cbfd30c
1 changed files with 7 additions and 7 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue