diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2015-09-25 15:24:30 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2015-09-25 15:24:30 +0200 |
commit | a317a1632b5bdb8c07ec572f0cb6fbced0fd4242 (patch) | |
tree | f401cdd23cdab31de5bbc6928620b9fcde7da132 /ymir.nix | |
parent | 74ff861a8b201ea7ce3591d219cb39d45a920e30 (diff) | |
download | nixos-a317a1632b5bdb8c07ec572f0cb6fbced0fd4242.tar nixos-a317a1632b5bdb8c07ec572f0cb6fbced0fd4242.tar.gz nixos-a317a1632b5bdb8c07ec572f0cb6fbced0fd4242.tar.bz2 nixos-a317a1632b5bdb8c07ec572f0cb6fbced0fd4242.tar.xz nixos-a317a1632b5bdb8c07ec572f0cb6fbced0fd4242.zip |
syntax fix
Diffstat (limited to 'ymir.nix')
-rw-r--r-- | ymir.nix | 11 |
1 files changed, 3 insertions, 8 deletions
@@ -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 | ||