summary refs log tree commit diff
path: root/nixos/modules/i18n/input-method/default.nix
diff options
context:
space:
mode:
authorAntonio Yang <yanganto@gmail.com>2020-09-17 00:01:57 +0800
committerAntonio Yang <yanganto@gmail.com>2020-10-03 22:27:22 +0800
commit0c138794af79ddc3907b6e3375edde5aaec08001 (patch)
treeee11a07bdb58a2124cbdfe1a70b4406e2d547ebf /nixos/modules/i18n/input-method/default.nix
parent9d71f4f2e20eb6b0f51e99212e66d42c0b89cf2d (diff)
downloadnixpkgs-0c138794af79ddc3907b6e3375edde5aaec08001.tar
nixpkgs-0c138794af79ddc3907b6e3375edde5aaec08001.tar.gz
nixpkgs-0c138794af79ddc3907b6e3375edde5aaec08001.tar.bz2
nixpkgs-0c138794af79ddc3907b6e3375edde5aaec08001.tar.lz
nixpkgs-0c138794af79ddc3907b6e3375edde5aaec08001.tar.xz
nixpkgs-0c138794af79ddc3907b6e3375edde5aaec08001.tar.zst
nixpkgs-0c138794af79ddc3907b6e3375edde5aaec08001.zip
input methods: add hime
Diffstat (limited to 'nixos/modules/i18n/input-method/default.nix')
-rw-r--r--nixos/modules/i18n/input-method/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nixos/modules/i18n/input-method/default.nix b/nixos/modules/i18n/input-method/default.nix
index 9548a249efa..0d6dd3399bf 100644
--- a/nixos/modules/i18n/input-method/default.nix
+++ b/nixos/modules/i18n/input-method/default.nix
@@ -29,7 +29,7 @@ in
   options.i18n = {
     inputMethod = {
       enabled = mkOption {
-        type    = types.nullOr (types.enum [ "ibus" "fcitx" "nabi" "uim" ]);
+        type    = types.nullOr (types.enum [ "ibus" "fcitx" "nabi" "uim" "hime" ]);
         default = null;
         example = "fcitx";
         description = ''
@@ -44,6 +44,7 @@ in
           <listitem><para>fcitx: A customizable lightweight input method, extra input engines can be added using <literal>i18n.inputMethod.fcitx.engines</literal>.</para></listitem>
           <listitem><para>nabi: A Korean input method based on XIM. Nabi doesn't support Qt 5.</para></listitem>
           <listitem><para>uim: The universal input method, is a library with a XIM bridge. uim mainly support Chinese, Japanese and Korean.</para></listitem>
+          <listitem><para>hime: An extremely easy-to-use input method framework.</para></listitem>
           </itemizedlist>
         '';
       };