From 45f835e29f933980e476423fb7c83df538089656 Mon Sep 17 00:00:00 2001 From: albert Date: Thu, 21 Mar 2024 08:10:29 +0900 Subject: [PATCH] Testing --- nixos/common/modules/networking.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nixos/common/modules/networking.nix b/nixos/common/modules/networking.nix index 1b975c2a..61002d3b 100644 --- a/nixos/common/modules/networking.nix +++ b/nixos/common/modules/networking.nix @@ -14,4 +14,10 @@ allowedUDPPorts = [ ]; }; }; + + boot.kernel.sysctl = { + "net.ipv6.conf.all.disable_ipv6" = true; + }; + + boot.kernelParams = [ "ipv6.disable=1" ]; }