From 8f165dbc05ef531bedc05bb86e1f3ad037d37dd1 Mon Sep 17 00:00:00 2001 From: William Date: Sun, 1 Jun 2025 19:23:30 -0300 Subject: [PATCH] fix kernel ip forwarding on trantor --- hosts/modules/trantor/networking.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/hosts/modules/trantor/networking.nix b/hosts/modules/trantor/networking.nix index 0246968..3dc32f0 100644 --- a/hosts/modules/trantor/networking.nix +++ b/hosts/modules/trantor/networking.nix @@ -31,9 +31,8 @@ } ]; }; - }; - - kernel.sysctl = { - "net.ipv4.ip_forward" = 1; + kernel.sysctl = { + "net.ipv4.ip_forward" = 1; + }; }; }