nixos-config/config/programs/fcitx.nix
Charlotte 🦝 Delenk 66052d3d57
fix fcitx5 table input
Tables require the chinese addons to work.

Child of [[202307271614 - fcitx5 table input on NixOS]]
2023-07-27 16:23:11 +01:00

6 lines
186 B
Nix

{pkgs, ...}: {
i18n.inputMethod = {
enabled = "fcitx5";
fcitx5.addons = with pkgs; [fcitx5-mozc fcitx5-chinese-addons fcitx5-table-extra fcitx5-table-other fcitx5-gtk];
};
}