From 0c6d26b4fce5641dd746c8061526aa8141f1b3db Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Mon, 9 Dec 2024 00:22:30 +0100 Subject: [PATCH] feat: remove db from iproute2 as well MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Too big already… ! Signed-off-by: Raito Bezarius --- overlay.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/overlay.nix b/overlay.nix index c674ad3..b170c24 100644 --- a/overlay.nix +++ b/overlay.nix @@ -214,7 +214,8 @@ extraPkgs // { }); # Don't bring ebpf stuff to the table. # We also remove tc so we can drop iptables as well. - in i.override { elfutils = null; iptables = null; }; + # Let's try to kill `db` as well. + in i.override { elfutils = null; iptables = null; db = null; }; wpa_supplicant = prev.wpa_supplicant.override { dbusSupport = false;