1
0
Fork 0
forked from emily/nixfiles
nixfiles-emily/config/profiles/remote-build.nix

12 lines
320 B
Nix
Raw Normal View History

2024-04-03 10:38:55 +02:00
{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;
}