diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2015-11-17 15:24:35 +0100 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2015-11-17 15:24:35 +0100 |
commit | 88b09000c50f0552b53903001f00d9085ff283e0 (patch) | |
tree | 67a7ecf911b3320a46dc8fc1445d76f45bc3aab8 /ymir.nix | |
parent | 725543191e1270c1780697f12ce25c0510361725 (diff) | |
download | nixos-88b09000c50f0552b53903001f00d9085ff283e0.tar nixos-88b09000c50f0552b53903001f00d9085ff283e0.tar.gz nixos-88b09000c50f0552b53903001f00d9085ff283e0.tar.bz2 nixos-88b09000c50f0552b53903001f00d9085ff283e0.tar.xz nixos-88b09000c50f0552b53903001f00d9085ff283e0.zip |
ipv6
Diffstat (limited to 'ymir.nix')
-rw-r--r-- | ymir.nix | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -191,6 +191,15 @@ in rec { | |||
191 | hostAddress = "192.168.0.1"; | 191 | hostAddress = "192.168.0.1"; |
192 | localAddress = "192.168.0.2"; | 192 | localAddress = "192.168.0.2"; |
193 | config = { | 193 | config = { |
194 | networking = { | ||
195 | enableIPv6 = true; | ||
196 | defaultGateway6 = "2a03:4000:6:d004::"; | ||
197 | interfaces."eth0" = { | ||
198 | ipv6Address = "2a03:4000:6:d004::1"; | ||
199 | ipv6PrefixLength = 64; | ||
200 | }; | ||
201 | }; | ||
202 | |||
194 | services.fcron = { | 203 | services.fcron = { |
195 | enable = true; | 204 | enable = true; |
196 | systab = '' | 205 | systab = '' |