From 2e53101fb7d71f4393fb0209fa99b4e3d733cdcb Mon Sep 17 00:00:00 2001 From: Ryan Yin Date: Wed, 17 Dec 2025 15:50:35 +0800 Subject: [PATCH] feat: fcitx5 - add japanese ime --- home/linux/gui/base/fcitx5/default.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/home/linux/gui/base/fcitx5/default.nix b/home/linux/gui/base/fcitx5/default.nix index c0cfd92f..e7407c52 100644 --- a/home/linux/gui/base/fcitx5/default.nix +++ b/home/linux/gui/base/fcitx5/default.nix @@ -14,13 +14,15 @@ type = "fcitx5"; fcitx5.waylandFrontend = true; fcitx5.addons = with pkgs; [ - # for flypy chinese input method - fcitx5-rime - # needed enable rime using configtool after installed - qt6Packages.fcitx5-configtool - # fcitx5-chinese-addons # we use rime instead - # fcitx5-mozc # japanese input method + qt6Packages.fcitx5-configtool # GUI for fcitx5 fcitx5-gtk # gtk im module + + # Chinese + fcitx5-rime # for flypy chinese input method + # fcitx5-chinese-addons # we use rime instead + + # Japanese + fcitx5-mozc-ut ]; }; }