24 lines
485 B
Nix
24 lines
485 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: {
|
|
i18n.inputMethod = {
|
|
enabled = "fcitx5";
|
|
fcitx5.addons =
|
|
(with pkgs; [
|
|
fcitx5-chinese-addons
|
|
fcitx5-tokyonight
|
|
])
|
|
++ (with inputs.berberman.packages.${pkgs.stdenv.hostPlatform.system}; [
|
|
fcitx5-pinyin-moegirl
|
|
fcitx5-pinyin-zhwiki
|
|
]);
|
|
};
|
|
|
|
xdg.configFile."fcitx5/conf/classicui.conf".text = ''
|
|
Theme=Tokyonight-Storm
|
|
Vertical Candidate List=True
|
|
PreferTextIcon=True
|
|
'';
|
|
}
|