* Dual core all the way.
svn path=/configurations/trunk/tud/; revision=8110
Eelco Dolstra committed
Feb 28, 2007 at 17:00 UTC
eeb6d182f878790a3e26669d27c6cb15e38794d6
2 files changed
+9
-2
build-machines.nix
+4
@@ -16,6 +16,10 @@
16
{ label = "swap"; }
17
];
18
19
+ nix = {
20
+ maxJobs = 2;
21
+ };
22
+
23
networking = {
24
useDHCP = false;
25
interfaces = [
main.nix
+5
-2
@@ -4,7 +4,6 @@ rec {
4
initrd = {
5
extraKernelModules = ["arcmsr"];
6
};
7
-
7
extraKernelModules = ["kvm-intel"];
8
};
9
@@ -18,6 +17,10 @@ rec {
17
{ label = "swap1"; }
18
];
19
20
+ nix = {
21
+ maxJobs = 2;
22
+ };
23
+
24
networking = {
25
hostName = "buildfarm";
26
defaultGateway = "130.161.158.1";
@@ -32,7 +35,7 @@ rec {
35
}
36
];
37
};
35
-
38
+
39
services = {
40
sshd = {
41
enable = true;