From cba3b31df3ce2e0a736275705f9b2405e3d8cc3e Mon Sep 17 00:00:00 2001 From: "Casper V. Kristensen" Date: Tue, 11 Jun 2024 00:46:56 +0200 Subject: [PATCH] dont use `net.ipv4.ip_forward` `net.ipv4.conf.all.forwarding` is sufficient. --- hosts/alpha/network.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/hosts/alpha/network.nix b/hosts/alpha/network.nix index 6173355..ae62cc9 100644 --- a/hosts/alpha/network.nix +++ b/hosts/alpha/network.nix @@ -87,7 +87,6 @@ # Enable forwarding of packets boot.kernel.sysctl = { - "net.ipv4.ip_forward" = true; "net.ipv4.conf.all.forwarding" = true; };