summaryrefslogtreecommitdiff
path: root/modules/software/input.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/software/input.nix')
-rw-r--r--modules/software/input.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/modules/software/input.nix b/modules/software/input.nix
new file mode 100644
index 0000000..e9f3c45
--- /dev/null
+++ b/modules/software/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
+ ];
+ };
+ };
+ };
+}