From 955eaa63f9501c7e32415732bc3740a388ebd91f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vili=20Sinerv=C3=A4?= Date: Thu, 24 Jul 2025 12:46:09 +0300 Subject: [PATCH] Adjust Hydra configuration --- modules/services/hydra.nix | 3 ++- modules/services/nix-cache-client.nix | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/services/hydra.nix b/modules/services/hydra.nix index 2416920..20355e4 100644 --- a/modules/services/hydra.nix +++ b/modules/services/hydra.nix @@ -42,6 +42,7 @@ in port = 8080; useSubstitutes = true; extraConfig = '' + max_concurrent_evals = 6 enable = 1 @@ -80,7 +81,7 @@ in "big-parallel" "benchmark" ]; - maxJobs = 4; + maxJobs = 6; } ]; diff --git a/modules/services/nix-cache-client.nix b/modules/services/nix-cache-client.nix index c3155d4..4d237b2 100644 --- a/modules/services/nix-cache-client.nix +++ b/modules/services/nix-cache-client.nix @@ -16,7 +16,7 @@ in buildMachines = lib.mkIf (cfg.remoteBuilds.additional || cfg.remoteBuilds.exclusive) [ { hostName = "cache.sinerva.eu"; - maxJobs = 4; + maxJobs = 6; protocol = "ssh"; speedFactor = 10; sshUser = "nix-ssh";