2 Commits

Author SHA1 Message Date
fd1de4ce44 notifiarr port 2025-12-07 22:41:01 -05:00
aa705d4c8d change checkPhase to preCheck
All checks were successful
Check flake.lock / Check health of `flake.lock` (pull_request) Successful in 13s
Check Nix flake / Perform Nix flake checks (pull_request) Successful in 3m15s
2025-12-07 22:17:24 -05:00
2 changed files with 3 additions and 2 deletions

View File

@@ -90,6 +90,7 @@ in
}; };
notifiarr = { notifiarr = {
image = "golift/notifiarr:latest"; image = "golift/notifiarr:latest";
ports = [ "5454:5454" ];
user = "600:100"; user = "600:100";
environment = { environment = {
TZ = "America/New_York"; TZ = "America/New_York";

View File

@@ -43,9 +43,9 @@ in
hydra = { hydra = {
enable = true; enable = true;
package = inputs.hydra.packages.x86_64-linux.hydra.overrideAttrs (old: { package = inputs.hydra.packages.x86_64-linux.hydra.overrideAttrs (old: {
checkPhase = '' preCheck = ''
export YATH_JOB_COUNT=8 export YATH_JOB_COUNT=8
${old.checkPhase or "yath test"} ${old.preCheck or ""}
''; '';
}); });
hydraURL = "https://hydra.alicehuston.xyz"; hydraURL = "https://hydra.alicehuston.xyz";