{ pkgs, ... }: { # Install Japanese IME MOZC i18n.inputMethod = { enable = true; type = "fcitx5"; # ibus = { # engines = with pkgs.ibus-engines; [ mozc anthy ]; # panel = "${pkgs.kdePackages.plasma-desktop}/libexec/kimpanel-ibus-panel"; # }; fcitx5 = { waylandFrontend = true; plasma6Support = true; addons = with pkgs; [ fcitx5-mozc fcitx5-anthy ]; }; }; environment.systemPackages = [ pkgs.kdePackages.fcitx5-configtool ]; }