summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/remote-build/master.nix
blob: 2a2c6811957d95b5c2321c88a7fe8543f8e7ea0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ pkgs, ...}:
let
  sshKey = (toString <secrets>) + "/id_nixBuild";
in {
  nix.distributedBuilds = true;
  # TODO: iterate over krebs.hosts
  nix.buildMachines = map ( hostName:
  {   inherit hostName sshKey;
      sshUser = "nixBuild";
      system = "x86_64-linux";
      maxJobs = 8;
  }) [ "hotdog.r" ];
  # puyak.r "wbob.r" "omo.r"  "gum.r" "latte.r"
}