* nixos-deploy-network configuration for the buildfarm.
svn path=/configurations/trunk/tud/; revision=16969
Eelco Dolstra committed
Sep 6, 2009 at 16:02 UTC
4396c8544003ed23c38900f6714761b28cf9733b
2 files changed
+50
infrastructure.nix
new
+39
@@ -0,0 +1,39 @@
1
+{
2
+ # !!! should be merged with machines.nix
3
+ terrance =
4
+ { hostName = "terrance";
5
+ system = "x86_64-linux";
6
+ };
7
+ phillip =
8
+ { hostName = "phillip";
9
+ system = "x86_64-linux";
10
+ };
11
+ jimmy =
12
+ { hostName = "jimmy";
13
+ system = "i686-linux";
14
+ };
15
+ timmy =
16
+ { hostName = "timmy";
17
+ system = "i686-linux";
18
+ };
19
+ kenny =
20
+ { hostName = "kenny";
21
+ system = "x86_64-linux";
22
+ };
23
+ stan =
24
+ { hostName = "stan";
25
+ system = "x86_64-linux";
26
+ };
27
+ kyle =
28
+ { hostName = "kyle";
29
+ system = "x86_64-linux";
30
+ };
31
+ cartman =
32
+ { hostName = "cartman";
33
+ system = "i686-linux";
34
+ };
35
+ hydra =
36
+ { hostName = "hydra";
37
+ system = "x86_64-linux";
38
+ };
39
+}
network.nix
new
+11
@@ -0,0 +1,11 @@
1
+{
2
+ terrance = import ./build-machines-hps.nix;
3
+ phillip = import ./build-machines-hps.nix;
4
+ jimmy = import ./build-machines-hps.nix;
5
+ timmy = import ./build-machines-hps.nix;
6
+ kenny = import ./build-machines-dell-1950.nix;
7
+ stan = import ./build-machines-dell-1950.nix;
8
+ kyle = import ./build-machines-dell-1950.nix;
9
+ #cartman = import ./cartman.nix;
10
+ hydra = import ./hydra.nix;
11
+}