diff --git a/hosts/miniserver/configuration.nix b/hosts/miniserver/configuration.nix index 55f7787..6c0fdc7 100644 --- a/hosts/miniserver/configuration.nix +++ b/hosts/miniserver/configuration.nix @@ -15,15 +15,14 @@ nix = { settings = { cores = 3; - max-jobs = 12; + max-jobs = 8; }; buildMachines = let - buildMachine = hostName: maxJobs: { - inherit hostName maxJobs; + buildMachine = hostName: maxJobs: speedFactor: { + inherit hostName maxJobs speedFactor; system = "x86_64-linux"; sshUser = "nixremote"; - speedFactor = 1; supportedFeatures = [ "nixos-test" "benchmark" @@ -36,8 +35,8 @@ }; in [ - (buildMachine "workstation" 10) - (buildMachine "server" 6) + (buildMachine "workstation" 16 40) + (buildMachine "server" 16 17) ]; }; nixpkgs.config.permittedInsecurePackages = [ "openssl-1.1.1w" ];