25 lines
490 B
Nix
25 lines
490 B
Nix
{ 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;
|
|
addons = with pkgs; [
|
|
fcitx5-mozc
|
|
fcitx5-anthy
|
|
];
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = [
|
|
pkgs.kdePackages.fcitx5-configtool
|
|
];
|
|
}
|