diff options
author | Ben Sima <ben@bsima.me> | 2020-04-04 16:38:40 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-04-04 16:38:40 -0700 |
commit | f5f58cacf788d37dd5a650ecfe4f34b0cb1f621d (patch) | |
tree | 750e984eda839d9518138f6ee0d07bfe85764da7 /Com/Simatime/Cloud/networking.nix | |
parent | 5aff8b6f7e6e9934e659fadb80e06c928f945cd5 (diff) |
Attempt to fix ipv6
Not sure if this worked. Hopefully it didn't break anything in the meantime.
Diffstat (limited to 'Com/Simatime/Cloud/networking.nix')
-rw-r--r-- | Com/Simatime/Cloud/networking.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Com/Simatime/Cloud/networking.nix b/Com/Simatime/Cloud/networking.nix index 0df42e3..d943c13 100644 --- a/Com/Simatime/Cloud/networking.nix +++ b/Com/Simatime/Cloud/networking.nix @@ -5,7 +5,6 @@ firewall = { allowedTCPPorts = [ 22 80 443 ]; - allowPing = true; }; # This following was populated at runtime with the networking details @@ -15,7 +14,7 @@ "67.207.67.3" ]; defaultGateway = "159.89.128.1"; - defaultGateway6 = ""; + defaultGateway6 = "2604:a880:2:d0::1"; dhcpcd.enable = false; usePredictableInterfaceNames = lib.mkForce true; interfaces = { @@ -25,7 +24,8 @@ { address="10.46.0.6"; prefixLength=16; } ]; ipv6.addresses = [ - { address="fe80::e899:c0ff:fe9c:e194"; prefixLength=64; } + { address="2604:a880:2:d0::35:c001"; prefixLength = 64; } + { address="fe80::e899:c0ff:fe9c:e194"; prefixLength = 64; } ]; }; }; |