13 lines
217 B
Nix
13 lines
217 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}: {
|
|
i18n.inputMethod = {
|
|
enabled = "fcitx5";
|
|
fcitx5.addons = with pkgs; [
|
|
fcitx5-gtk
|
|
fcitx5-skk-qt
|
|
libsForQt5.fcitx5-qt
|
|
];
|
|
};
|
|
}
|