diff options
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 = '' |