cornflake/programs/fcitx.nix
2025-10-04 02:58:56 +09:00

14 lines
211 B
Nix

{ pkgs, ... }:
{
i18n.inputMethod = {
type = "fcitx5";
enable = true;
fcitx5.addons = with pkgs; [
fcitx5-mozc
fcitx5-gtk
fcitx5-rose-pine
];
fcitx5.waylandFrontend = true;
};
}