rice/programs/ime.nix

13 lines
221 B
Nix
Raw Normal View History

2023-04-03 16:40:18 +00:00
{pkgs, ...}: {
home-manager.users.buffet = {
i18n.inputMethod = {
enabled = "fcitx5";
fcitx5.addons = with pkgs; [
fcitx5-configtool
fcitx5-gtk
fcitx5-mozc
];
};
};
}