diff options
Diffstat (limited to 'modules/system/input.nix')
| -rw-r--r-- | modules/system/input.nix | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/modules/system/input.nix b/modules/system/input.nix new file mode 100644 index 0000000..e9f3c45 --- /dev/null +++ b/modules/system/input.nix @@ -0,0 +1,25 @@ +{ pkgs, ... }: +{ + i18n = { + defaultLocale = "en_US.UTF-8"; + + 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 + ]; + }; + }; + }; +} |