1
0
Fork 0
forked from emily/nixfiles
nixfiles-emily/config/profiles/remote-build.nix
2024-04-03 10:38:55 +02:00

11 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;
}