cornflake/programs/fcitx.nix
2025-01-30 21:55:28 +09:00

12 lines
155 B
Nix

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