My Nix Configuration
1_:
2
3{
4 nix = {
5 buildMachines = [
6 {
7 hostName = "marvin";
8 systems = [
9 "x86_64-linux"
10 "i686-linux"
11 ];
12 protocol = "ssh";
13 maxJobs = 8;
14 speedFactor = 3;
15 supportedFeatures = [
16 "nixos-test"
17 "benchmark"
18 "big-parallel"
19 "kvm"
20 ];
21 mandatoryFeatures = [ ];
22 sshUser = "thehedgehog";
23 }
24 ];
25 distributedBuilds = true;
26 settings = {
27 builders-use-substitutes = true;
28 trusted-public-keys = [ "marvin:6KYRoivyUqnmakGGMyvPOlJfLbIMixVFCFH25260vFc=" ];
29 substituters = [ "ssh://thehedgehog@marvin" ];
30 };
31 };
32}