mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-19 07:29:46 +02:00
15 lines
387 B
Nix
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
|
|
];
|
|
};
|
|
} |