svn path=/configurations/trunk/tud/; revision=25059
svn path=/configurations/trunk/tud/; revision=25059
Eelco Dolstra committed
Dec 10, 2010 at 17:30 UTC
53f33d44fb5edbd6e8e4f1883f3ad1e0a0c4e2fc
1 file changed
+13
-1
lucifer.nix
+13
-1
@@ -3,6 +3,8 @@
3
{
4
require = [ ./common.nix ];
5
6
+ environment.nix = pkgs.nixSqlite;
7
+
8
networking.hostName = "lucifer";
9
10
boot.loader.grub.device = "/dev/sda";
@@ -14,9 +16,19 @@
16
[ { mountPoint = "/";
17
label = "nixos";
18
}
19
+ { mountPoint = "/fatdata";
20
+ device = "/dev/fatdisk/fatdata";
21
+ neededForBoot = true;
22
+ }
23
+ { mountPoint = "/nix";
24
+ device = "/fatdata/nix";
25
+ fsType = "none";
26
+ options = "bind";
27
+ neededForBoot = true;
28
+ }
29
{ mountPoint = "/data";
30
label = "data";
19
- }
31
+ }
32
];
33
34
services.nfsKernel.server.enable = true;