summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2015-09-25 15:24:30 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2015-09-25 15:24:30 +0200
commita317a1632b5bdb8c07ec572f0cb6fbced0fd4242 (patch)
treef401cdd23cdab31de5bbc6928620b9fcde7da132
parent74ff861a8b201ea7ce3591d219cb39d45a920e30 (diff)
downloadnixos-a317a1632b5bdb8c07ec572f0cb6fbced0fd4242.tar
nixos-a317a1632b5bdb8c07ec572f0cb6fbced0fd4242.tar.gz
nixos-a317a1632b5bdb8c07ec572f0cb6fbced0fd4242.tar.bz2
nixos-a317a1632b5bdb8c07ec572f0cb6fbced0fd4242.tar.xz
nixos-a317a1632b5bdb8c07ec572f0cb6fbced0fd4242.zip
syntax fix
-rw-r--r--ymir.nix11
1 files changed, 3 insertions, 8 deletions
diff --git a/ymir.nix b/ymir.nix
index ab9c4325..d3c4235c 100644
--- a/ymir.nix
+++ b/ymir.nix
@@ -35,14 +35,9 @@
35 }; 35 };
36 enableIPv6 = true; 36 enableIPv6 = true;
37 defaultGateway6 = "fe80::1"; 37 defaultGateway6 = "fe80::1";
38 interfaces = { 38 interfaces."enp0s3" = {
39 enp0s3 = { 39 ipv6Address = "2a03:4000:6:d004::";
40 name = "enp0s3"; 40 ipv6PrefixLength = "64";
41 ip6 = {
42 address = "2a03:4000:6:d004::";
43 prefixLength = "64";
44 };
45 };
46 }; 41 };
47 }; 42 };
48 43