* Manual IP config.
svn path=/configurations/trunk/tud/; revision=7899
Eelco Dolstra committed
Feb 12, 2007 at 16:01 UTC
b582c9ec897dd366046709cbb99e31b1c16e3aa6
1 file changed
+5
-4
build-machines.nix
+5
-4
@@ -18,10 +18,11 @@
18
19
networking = {
20
useDHCP = false;
21
- interfaces = {
22
- interface = "eth0";
23
- ipAddress = "192.168.1.14";
24
- };
21
+ interfaces = [
22
+ { name = "eth0";
23
+ ipAddress = "192.168.1.14";
24
+ }
25
+ ];
26
defaultGateway = "192.168.1.1";
27
nameservers = ["130.161.158.4" "130.161.33.17" "130.161.180.1"];
28
};