From feb5484b3e414b0b73d220081d6aca5ccb5e8dc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Mon, 26 May 2025 09:03:50 +0200 Subject: [PATCH] vanadium: disable fcitx5-chinese-addons crazy features --- nix/configurations/vanadium/overlay.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nix/configurations/vanadium/overlay.nix b/nix/configurations/vanadium/overlay.nix index 8418a931..87ae9df3 100644 --- a/nix/configurations/vanadium/overlay.nix +++ b/nix/configurations/vanadium/overlay.nix @@ -33,4 +33,9 @@ in ./patches/fcitx5/disable-quickphrase.patch ./patches/fcitx5/disable-unicode.patch ]; + fcitx5-chinese-addons.__output.cmakeFlags.__append = [ + (lib.cmakeFeature "ENABLE_BROWSER" "Off") + (lib.cmakeFeature "ENABLE_CLOUDPINYIN" "Off") + (lib.cmakeFeature "ENABLE_DATA" "Off") + ]; })