From 2c873e2ad7d1ebe4b92edc0dcc77908daa905fcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Sun, 25 May 2025 23:46:25 +0200 Subject: [PATCH] vanadium: disable fcitx5 emoji support --- nix/configurations/vanadium/nixos/overlay.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nix/configurations/vanadium/nixos/overlay.nix b/nix/configurations/vanadium/nixos/overlay.nix index 423efbec..62da0e42 100644 --- a/nix/configurations/vanadium/nixos/overlay.nix +++ b/nix/configurations/vanadium/nixos/overlay.nix @@ -23,4 +23,8 @@ in vlc.__input.chromecastSupport = _: false; vlc.__input.waylandSupport = _: false; + + fcitx5.__output.cmakeFlags.__append = [ + (lib.cmakeFeature "ENABLE_EMOJI" "Off") + ]; })