* Remove the noatime flag since the default (relatime) is good enough.
svn path=/configurations/trunk/tud/; revision=20185
Eelco Dolstra committed
Feb 23, 2010 at 10:18 UTC
6a2ccbc6ca7f060bc5581fb922231ac18093674d
4 files changed
+3
-16
build-db-dell-R410.nix
-2
@@ -12,11 +12,9 @@
12
fileSystems =
13
[ { mountPoint = "/";
14
label = "nixos";
15
- options = "noatime";
15
}
16
{ mountPoint = "/data";
17
label = "data";
19
- options = "noatime";
18
}
19
];
20
build-machines-common.nix
-1
@@ -10,7 +10,6 @@
10
fileSystems =
11
[ { mountPoint = "/";
12
label = "nixos";
13
- options = "noatime";
13
}
14
];
15
cartman.nix
+1
-1
@@ -45,7 +45,7 @@ rec {
45
fileSystems = [
46
{ mountPoint = "/";
47
label = "nixos";
48
- options = "acl,noatime";
48
+ options = "acl";
49
}
50
];
51
hydra.nix
+2
-12
@@ -31,7 +31,6 @@ in
31
fileSystems = [
32
{ mountPoint = "/";
33
label = "nixos";
34
- options = "noatime";
34
}
35
];
36
@@ -42,6 +41,8 @@ in
41
nix = {
42
maxJobs = 0;
43
distributedBuilds = true;
44
+ manualNixMachines = true;
45
+
46
inherit buildMachines;
47
48
extraOptions = ''
@@ -74,17 +75,6 @@ in
75
};
76
77
services = {
77
- httpd.enable = true;
78
- httpd.adminAddr = "rob.vermaas@gmail.com";
79
-
80
- systemhealth = {
81
- enable = true;
82
- interfaces = [ "lo" "eth0" ];
83
- drives = [
84
- { name = "root"; path = "/"; }
85
- ];
86
- };
87
-
78
cron.systemCronJobs =
79
[ "15 02 * * * hydra source /home/hydra/.bashrc; /nix/var/nix/profiles/per-user/hydra/profile/bin/hydra_update_gc_roots.pl > /home/hydra/gc-roots.log 2>&1"
80
# Make sure that at least 100 GiB of disk space is available.