2020-12-18 06:10:48 +00:00
|
|
|
{ config, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
nix = {
|
2023-08-26 23:00:18 +00:00
|
|
|
buildMachines = [{
|
|
|
|
hostName = "starlight";
|
|
|
|
supportedFeatures = [ "kvm" "big-parallel" "benchmark" "nixos-text" ];
|
|
|
|
system = "x86_64-linux";
|
|
|
|
maxJobs = 2;
|
|
|
|
}];
|
2020-12-18 06:10:48 +00:00
|
|
|
distributedBuilds = true;
|
|
|
|
extraOptions = ''
|
|
|
|
builders-use-substitutes = true
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|