* Configuration for the Big Fat Machine in the TUD build farm.
svn path=/configurations/trunk/tud/; revision=7892
Eelco Dolstra committed
Feb 12, 2007 at 11:59 UTC
df4687185e4d6bc32865cb28ef7ee19f1631695f
1 file changed
+44
main.nix
new
+44
@@ -0,0 +1,44 @@
1
+{
2
+ boot = {
3
+ grubDevice = "/dev/sda";
4
+ initrd = {
5
+ extraKernelModules = ["arcmsr"];
6
+ };
7
+ };
8
+
9
+ fileSystems = [
10
+ { mountPoint = "/";
11
+ label = "nixos";
12
+ }
13
+ ];
14
+
15
+ swapDevices = [
16
+ { label = "swap1"; }
17
+ ];
18
+
19
+ services = {
20
+ sshd = {
21
+ enable = true;
22
+ };
23
+
24
+ httpd = {
25
+ enable = true;
26
+ adminAddr = "admin@example.org";
27
+ hostName = "dutiel.st.ewi.tudelft.nl";
28
+
29
+ subservices = {
30
+
31
+ subversion = {
32
+ enable = true;
33
+ dataDir = "/data/subversion";
34
+ notificationSender = "svn@example.org";
35
+ userCreationDomain = "st.ewi.tudelft.nl";
36
+ };
37
+
38
+ };
39
+
40
+ };
41
+
42
+ };
43
+
44
+}