2024-07-26 20:18:26 +02:00
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
i18n.inputMethod = {
|
2025-02-07 16:02:22 +01:00
|
|
|
type = "fcitx5";
|
|
|
|
enable = true;
|
2024-07-26 20:18:26 +02:00
|
|
|
fcitx5.addons = with pkgs; [
|
2025-02-07 16:02:22 +01:00
|
|
|
fcitx5-mozc # for japanese input
|
2024-07-26 20:18:26 +02:00
|
|
|
fcitx5-gtk
|
|
|
|
];
|
2025-02-07 16:02:22 +01:00
|
|
|
fcitx5.waylandFrontend = true;
|
2024-07-26 20:18:26 +02:00
|
|
|
};
|
|
|
|
}
|