about summary refs log tree commit diff
path: root/users/aspen/system/system/modules/fcitx.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/aspen/system/system/modules/fcitx.nix')
-rw-r--r--users/aspen/system/system/modules/fcitx.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/users/aspen/system/system/modules/fcitx.nix b/users/aspen/system/system/modules/fcitx.nix
new file mode 100644
index 0000000000..812f598f9f
--- /dev/null
+++ b/users/aspen/system/system/modules/fcitx.nix
@@ -0,0 +1,10 @@
+{ config, lib, pkgs, ... }:
+
+{
+  i18n.inputMethod = {
+    enabled = "fcitx";
+    fcitx.engines = with pkgs.fcitx-engines; [
+      cloudpinyin
+    ];
+  };
+}