feat: setup fcitx5

This commit is contained in:
buffet 2023-04-03 18:40:18 +02:00
parent 7b6b1f9247
commit 3deb83c476
2 changed files with 13 additions and 0 deletions

View file

@ -7,6 +7,7 @@ _: {
./foot.nix
./git.nix
./gpg.nix
./ime.nix
./lsd.nix
./mako.nix
./newsboat.nix

12
programs/ime.nix Normal file
View file

@ -0,0 +1,12 @@
{pkgs, ...}: {
home-manager.users.buffet = {
i18n.inputMethod = {
enabled = "fcitx5";
fcitx5.addons = with pkgs; [
fcitx5-configtool
fcitx5-gtk
fcitx5-mozc
];
};
};
}