From 3b594314e7cb12d2f6b85e54ae35a8eb775d5704 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Thu, 30 May 2024 09:52:39 +0200 Subject: [PATCH] Update fcitx5 for wayland --- home/christoph/nixinator/default.nix | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/home/christoph/nixinator/default.nix b/home/christoph/nixinator/default.nix index 3a9ae316..f6522fe7 100644 --- a/home/christoph/nixinator/default.nix +++ b/home/christoph/nixinator/default.nix @@ -110,11 +110,15 @@ rec { # The laptop needs de-DE... # Chinese Input i18n.inputMethod.enabled = "fcitx5"; - i18n.inputMethod.fcitx5.addons = with pkgs; [ - fcitx5-gtk - libsForQt5.fcitx5-qt - fcitx5-chinese-addons - fcitx5-configtool # TODO: Remove this and set config through HomeManager - ]; + i18n.inputMethod.fcitx5 = { + waylandFrontend = true; + + addons = with pkgs; [ + fcitx5-gtk + libsForQt5.fcitx5-qt + fcitx5-chinese-addons + fcitx5-configtool # TODO: Remove this and set config through HomeManager + ]; + }; }; }