summaryrefslogtreecommitdiff
path: root/hosts/p-body/buildMachines.nix
blob: f58c455930e1f1352d711eb57b03c430dd3c4d11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
_: {
  nix = {
    buildMachines = [
      {
        hostName = "atlas";
        maxJobs = 4;
        sshUser = "bob";
        supportedFeatures = ["benchmark" "big-parallel" "gccarch-armv8-a" "kvm" "nixos-test"];
        systems = ["aarch64-linux" "x86_64-linux" "i686-linux"];
      }
    ];

    settings.builders-use-substitutes = true;
  };
}