forked from emily/nixfiles
12 lines
320 B
Nix
12 lines
320 B
Nix
|
{config, lib, pkgs, ... }: {
|
||
|
nix.buildMachines = [{
|
||
|
hostName = "seras.kyouma.net";
|
||
|
sshUser = "nixremote";
|
||
|
maxJobs = 40;
|
||
|
speedFactor = 5;
|
||
|
systems = [ "aarch64-linux" "x86_64-linux" ];
|
||
|
supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
|
||
|
}];
|
||
|
nix.distributedBuilds = true;
|
||
|
}
|