flake/home/applications/fcitx5/default.nix

17 lines
354 B
Nix
Raw Normal View History

2024-07-02 05:49:41 +00:00
{pkgs, ...}: {
2023-09-19 00:17:43 +00:00
i18n.inputMethod = {
enabled = "fcitx5";
2024-07-02 05:49:41 +00:00
fcitx5.addons = with pkgs; [
qt6Packages.fcitx5-chinese-addons
2024-07-02 05:49:41 +00:00
fcitx5-pinyin-minecraft
fcitx5-pinyin-moegirl
fcitx5-pinyin-zhwiki
];
2023-09-19 00:17:43 +00:00
};
xdg.configFile."fcitx5/conf/classicui.conf".text = ''
Vertical Candidate List=True
2024-03-10 05:47:06 +00:00
PreferTextIcon=True
'';
}