Merge pull request 'limit yath cores' (#146) from feature/hydra_yath_core_limit into main
All checks were successful
Check flake.lock / Check health of `flake.lock` (push) Successful in 10s
Check Nix flake / Perform Nix flake checks (push) Successful in 2m50s

Reviewed-on: #146
This commit was merged in pull request #146.
This commit is contained in:
2025-12-07 18:50:46 -05:00

View File

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