dotfiles/nixos/distributed-builds.nix

35 lines
789 B
Nix
Raw Normal View History

{ config, pkgs, ... }: {
2020-05-02 14:44:15 +01:00
programs.ssh.extraConfig = ''
StrictHostKeyChecking=accept-new
'';
2020-02-22 11:11:10 +00:00
nix.buildMachines = [
{
2021-10-01 10:22:46 +01:00
hostName = "bolty";
2020-02-22 11:11:10 +00:00
sshUser = "nix-builder";
sshKey = "/home/cyryl/.ssh/id_ed25519";
2022-03-02 22:14:47 +00:00
systems = [ "x86_64-linux" "aarch64-linux" ];
2020-02-23 20:17:37 +00:00
maxJobs = 2;
2022-03-06 20:18:50 +00:00
speedFactor = 1;
supportedFeatures = [ "kvm" ];
2022-03-06 20:18:50 +00:00
mandatoryFeatures = [ ];
}
{
hostName = "vpsfree1";
sshUser = "nix-builder";
sshKey = "/home/cyryl/.ssh/id_ed25519";
systems = [ "x86_64-linux" "aarch64-linux" ];
maxJobs = 2;
2020-05-23 13:57:07 +01:00
speedFactor = 2;
supportedFeatures = [ "kvm" ];
2020-02-22 11:11:10 +00:00
mandatoryFeatures = [ ];
}
];
nix.extraOptions = ''
2021-11-22 19:32:26 +00:00
builders-use-substitutes = true
2020-02-22 11:11:10 +00:00
'';
nix.distributedBuilds = true;
}