summaryrefslogtreecommitdiff
path: root/Com
diff options
context:
space:
mode:
Diffstat (limited to 'Com')
-rw-r--r--Com/Simatime/Cloud/networking.nix6
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; }
];
};
};