From 82e8629c0dd9bcd1f23064999fb2b9dad323bac2 Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Fri, 5 Jan 2024 10:54:56 +0530 Subject: kay/network/he: fix mtu --- hosts/kay/modules/hurricane.nix | 8 +++++--- 1 file 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; -- cgit v1.2.3