From 9838e913b5bb8b1074abf7a45fdcbb9ec8abb97b Mon Sep 17 00:00:00 2001 From: William Date: Sun, 1 Jun 2025 19:25:28 -0300 Subject: [PATCH] I should stop blindly trusting llms --- hosts/modules/trantor/boot.nix | 1 + hosts/modules/trantor/networking.nix | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/hosts/modules/trantor/boot.nix b/hosts/modules/trantor/boot.nix index ceb6821..35b8cb6 100644 --- a/hosts/modules/trantor/boot.nix +++ b/hosts/modules/trantor/boot.nix @@ -4,5 +4,6 @@ boot = { loader.efi.efiSysMountPoint = "/boot"; initrd.systemd.enable = true; + kernel.sysctl."net.ipv4.ip_forward" = 1; }; } diff --git a/hosts/modules/trantor/networking.nix b/hosts/modules/trantor/networking.nix index 3dc32f0..d1c6b09 100644 --- a/hosts/modules/trantor/networking.nix +++ b/hosts/modules/trantor/networking.nix @@ -31,8 +31,5 @@ } ]; }; - kernel.sysctl = { - "net.ipv4.ip_forward" = 1; - }; }; }