From d6c976f8a1daad05d42cfb0314b4230e666c2a02 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Mon, 9 Dec 2024 00:13:18 +0100 Subject: [PATCH] feat: remove iptables from iproute2 Signed-off-by: Raito Bezarius --- overlay.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/overlay.nix b/overlay.nix index 59c6b7e..fde7798 100644 --- a/overlay.nix +++ b/overlay.nix @@ -213,7 +213,8 @@ extraPkgs // { ''; }); # Don't bring ebpf stuff to the table. - in i.override { elfutils = null; }; + # We also remove tc so we can drop iptables as well. + in i.override { elfutils = null; iptables = null; }; wpa_supplicant = prev.wpa_supplicant.override { dbusSupport = false;