From 892d1b72f8f7d7d4580906252c1775b34b776cbb Mon Sep 17 00:00:00 2001 From: Daniel Lundin Date: Wed, 23 Oct 2024 22:13:40 +0200 Subject: [PATCH] Disable overlays for linux-utils and dbus for now. We probably want to revisit this later when minimizing the image, but let's avoid rebuilding most of the world at this point. --- overlays/default.nix | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/overlays/default.nix b/overlays/default.nix index dfc7ebb..31634f8 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -8,12 +8,14 @@ final: prev: { ]; }); - util-linux = prev.util-linux.override { - ncursesSupport = false; - nlsSupport = false; - }; + ## FIXME: Revisit + refine these below in a future image minimization effort - dbus = prev.dbus.override { - x11Support = false; - }; + # util-linux = prev.util-linux.override { + # ncursesSupport = false; + # nlsSupport = false; + # }; + # + # dbus = prev.dbus.override { + # x11Support = false; + # }; }