18 lines
360 B
Nix
18 lines
360 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}: {
|
|
i18n.inputMethod = {
|
|
enabled = "fcitx5";
|
|
fcitx5.addons = with pkgs; [
|
|
fcitx5-gtk
|
|
fcitx5-skk-qt
|
|
libsForQt5.fcitx5-qt
|
|
];
|
|
};
|
|
environment.sessionVariables = {
|
|
GTK_IM_MODULE = "fcitx";
|
|
QT_IM_MODULE = "fcitx";
|
|
XMODIFIERS = "@im=fcitx";
|
|
};
|
|
}
|