🔧 epicurus: configure remote builder

This commit is contained in:
2022-01-06 20:42:24 -05:00
parent fb409f98ba
commit bf6612dfb8
2 changed files with 19 additions and 1 deletions

View File

@ -0,0 +1,11 @@
{ config, lib, pkgs, ... }:
{
nix.distributedBuilds = true;
nix.buildMachines = [{
hostName = "plato";
systems = [ "x86_64-linux" "aarch64-linux" ];
maxJobs = 12;
speedFactor = 2;
supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
}];
}