nixos-config/sets/buildMachines.nix

17 lines
323 B
Nix
Raw Normal View History

{ 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;
}];
distributedBuilds = true;
extraOptions = ''
builders-use-substitutes = true
'';
};
}