[host/faunus-ater] Fix hydra queue

This commit is contained in:
Malte Tammena 2022-06-18 00:36:32 +02:00
parent fe17708ddc
commit 3aba722387

View file

@ -136,7 +136,7 @@ in {
enable = true;
package = pkgs.hydra;
notificationSender = "hydra@home";
hydraURL = "hydra.home";
hydraURL = "http://faunus-ater:${builtins.toString config.services.hydra.port}";
minimumDiskFree = 10;
useSubstitutes = true;
};
@ -146,6 +146,14 @@ in {
};
# Build on other machines aswell if possible
nix.buildMachines = [
{
hostName = "localhost";
maxJobs = 4;
speedFactor = 1;
sshKey = sopsPath "hydra-overseer-key";
sshUser = "hydra-minion";
systems = ["x86_64-linux" "i686-linux"];
}
{
hostName = "helix-texta";
maxJobs = 4;
@ -333,7 +341,7 @@ in {
};
"hydra-overseer-key" = {
owner = config.users.users.hydra.name;
mode = "0400";
mode = "0440";
};
};
}