diff options
Diffstat (limited to 'modules/pc/software/input.nix')
| -rw-r--r-- | modules/pc/software/input.nix | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/modules/pc/software/input.nix b/modules/pc/software/input.nix new file mode 100644 index 0000000..5d43085 --- /dev/null +++ b/modules/pc/software/input.nix @@ -0,0 +1,23 @@ +{ pkgs, ... }: +{ + i18n = { + inputMethod = { + enable = true; + type = "fcitx5"; + + fcitx5 = { + waylandFrontend = true; + + addons = with pkgs; [ + fcitx5-configtool + fcitx5-gtk + fcitx5-hangul + fcitx5-mozc + fcitx5-rime + rime-data + catppuccin-fcitx5 + ]; + }; + }; + }; +} |