flake/flakes/home-manager/guanranwang/nixos/i18n.nix
2023-09-19 08:17:43 +08:00

21 lines
No EOL
468 B
Nix

{ pkgs, ... }:
{
# Chinese IME
i18n.inputMethod = {
enabled = "fcitx5";
fcitx5.addons = with pkgs; [
fcitx5-chinese-addons
fcitx5-pinyin-moegirl # flakes
fcitx5-pinyin-zhwiki
];
};
home.sessionVariables = {
"FCITX_NO_PREEDIT_APPS" = "gvim.*,wps.*,wpp.*,et.*,cinny,epiphany";
#GLFW_IM_MODULE = "ibus"; # IME support in kitty
#GTK_IM_MODULE = "fcitx";
#QT_IM_MODULE = "fcitx";
#XMODIFIERS = "@im=fcitx";
};
}