Files
nix-config/home/fcitx5/default.nix
2023-05-21 12:03:48 +08:00

15 lines
387 B
Nix

{pkgs, config, ... }: {
i18n.inputMethod = {
enabled = "fcitx5";
fcitx5.addons = with pkgs; [
# for flypy chinese input method
fcitx5-rime
# needed enable rime using configtool after installed
fcitx5-configtool
fcitx5-chinese-addons
# fcitx5-mozc # japanese input method
fcitx5-gtk # gtk im module
];
};
}