summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2024-01-05 10:54:56 +0530
committersinanmohd <sinan@sinanmohd.com>2024-01-05 11:00:32 +0530
commit82e8629c0dd9bcd1f23064999fb2b9dad323bac2 (patch)
tree15a972f05b8412bb6344cd4aa6a303e6476f5d01 /hosts
parentf87bba16e8904d84b07cc82f01f0b2e8ba06880a (diff)
kay/network/he: fix mtu
Diffstat (limited to 'hosts')
-rw-r--r--hosts/kay/modules/hurricane.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/hosts/kay/modules/hurricane.nix b/hosts/kay/modules/hurricane.nix
index d0a0531..272f120 100644
--- a/hosts/kay/modules/hurricane.nix
+++ b/hosts/kay/modules/hurricane.nix
@@ -14,9 +14,11 @@ in
inherit remote;
ttl = 225;
};
- interfaces.${iface}.ipv6.addresses = [{
- inherit prefixLength address;
- }];
+ interfaces.${iface} = {
+ mtu = 1440; # 1460(ppp0) - 20
+ ipv6.addresses =
+ [{ inherit prefixLength address; }];
+ };
iproute2 = {
enable = true;