From f5f58cacf788d37dd5a650ecfe4f34b0cb1f621d Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Sat, 4 Apr 2020 16:38:40 -0700 Subject: Attempt to fix ipv6 Not sure if this worked. Hopefully it didn't break anything in the meantime. --- Com/Simatime/Cloud/networking.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Com/Simatime/Cloud/networking.nix') 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; } ]; }; }; -- cgit v1.2.3