nixos-config/config/programs/fcitx.nix

12 lines
247 B
Nix
Raw Normal View History

2022-06-14 11:50:10 +00:00
{pkgs, ...}: {
i18n.inputMethod = {
enabled = "fcitx5";
fcitx5.addons = with pkgs; [
fcitx5-mozc
2022-06-14 13:28:34 +00:00
fcitx5-chinese-addons # think this is required for table input?
2022-06-14 11:50:10 +00:00
fcitx5-table-extra
fcitx5-table-other
];
};
}