35 lines
750 B
Nix
35 lines
750 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
programs.ssh.extraConfig = ''
|
|
StrictHostKeyChecking=accept-new
|
|
'';
|
|
|
|
nix.buildMachines = [
|
|
{
|
|
hostName = "brix.lan";
|
|
sshUser = "nix-builder";
|
|
sshKey = "/home/cyryl/.ssh/id_ed25519";
|
|
system = "x86_64-linux";
|
|
maxJobs = 2;
|
|
speedFactor = 2;
|
|
supportedFeatures = [ "kvm" ];
|
|
mandatoryFeatures = [ ];
|
|
}
|
|
{
|
|
hostName = "vultr1.local";
|
|
sshUser = "nix-builder";
|
|
sshKey = "/home/cyryl/.ssh/id_ed25519";
|
|
system = "x86_64-linux";
|
|
maxJobs = 2;
|
|
speedFactor = 1;
|
|
supportedFeatures = [ ];
|
|
mandatoryFeatures = [ ];
|
|
}
|
|
];
|
|
|
|
nix.extraOptions = ''
|
|
builders-use-substitutes = true
|
|
'';
|
|
nix.distributedBuilds = true;
|
|
|
|
}
|