hydra, server7: increase maxJobs from 4 to 10

This commit is contained in:
Astro 2019-12-13 19:49:07 +01:00
parent 2e2fa3b8f1
commit 05ce0e78d0
3 changed files with 4 additions and 2 deletions

View File

@ -45,7 +45,7 @@
distributedBuilds = true;
package = pkgs.nixFlakes;
useSandbox = false;
maxJobs = lib.mkDefault 4;
maxJobs = lib.mkDefault 10;
autoOptimiseStore = true;
gc = {
automatic = true;

View File

@ -9,13 +9,14 @@
{
hostName = "localhost";
system = "x86_64-linux";
maxJobs = 2;
maxJobs = 10;
}
{
hostName = "server7.hq.c3d2.de";
system = "x86_64-linux";
sshUser = "buildfarmer";
sshKey = "/root/.ssh/id_ed25519";
maxJobs = 10;
}
];
};

View File

@ -50,6 +50,7 @@ in {
programs.mosh.enable = true;
nix = {
maxJobs = lib.mkDefault 10;
package = pkgs.nixFlakes;
extraOptions = "experimental-features = nix-command flakes";
gc.automatic = true;