My Nix Configuration
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

at dde1eb55cfd2f7b39bcd1a22d74c0e529c4e1071 32 lines 674 B view raw
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}