fix: We have a dependency on the /nix/store mount existing

This commit is contained in:
Jeremy Wall 2024-07-22 16:38:22 -04:00
parent 6088d9f9c9
commit b38ac9f632
2 changed files with 10 additions and 2 deletions

View File

@ -197,7 +197,11 @@ with lib;
];
#StandardErrorPath = "/var/log/clio.durnitisp.err";
#StandardOutPath = "/var/log/clio.durnitisp.out";
KeepAlive = true;
KeepAlive = {
PathState = {
"/nix/store" = true;
};
};
RunAtLoad = true;
};
};

View File

@ -43,7 +43,11 @@ with lib;
WatchPaths= [
"/etc/${config.environment.etc."vector.yaml".target}"
];
KeepAlive = true;
KeepAlive = {
PathState = {
"/nix/store" = true;
};
};
RunAtLoad = true;
};
};