diff options
Diffstat (limited to 'users/aspen/system/system/modules/fcitx.nix')
-rw-r--r-- | users/aspen/system/system/modules/fcitx.nix | 10 |
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 000000000000..812f598f9f47 --- /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 + ]; + }; +} |