From 71813a1f8fc1c3484ff661d1c694eebb7a419429 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Sat, 7 Sep 2024 17:03:50 +0200 Subject: [PATCH] feat(hostapd): disable openssl to save space Signed-off-by: Raito Bezarius --- overlay.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/overlay.nix b/overlay.nix index 4fd607c..dc6006a 100644 --- a/overlay.nix +++ b/overlay.nix @@ -172,8 +172,7 @@ extraPkgs // { "CONFIG_LIBNL32=y" "CONFIG_PKCS12=y" "CONFIG_RSN_PREAUTH=y" - # Required to read the key material for RADIUS. - "CONFIG_TLS=openssl" + "CONFIG_TLS=internal" ]; h = prev.hostapd.overrideAttrs(o: { extraConfig = ""; @@ -184,7 +183,7 @@ extraPkgs // { ${o.configurePhase} ''; }); - in h.override { sqlite = null; }; + in h.override { openssl = null; sqlite = null; };