summaryrefslogtreecommitdiffstats
path: root/nixos/modules/i18n/input-method/default.nix
diff options
context:
space:
mode:
authorEric Sagnes <eric.sagnes@gmail.com>2016-04-12 19:46:12 +0900
committerEric Sagnes <eric.sagnes@gmail.com>2016-04-12 19:50:26 +0900
commite6ae05dd8ac9e42b1394701b65452e1e9cef6529 (patch)
tree5ec6ac166f5a68c2523ee6818058a281fc81b3ca /nixos/modules/i18n/input-method/default.nix
parentde78fe8f2d78a5ef20d0d355c5dbe9d21b4be22c (diff)
input-method module: fix folder case
Diffstat (limited to 'nixos/modules/i18n/input-method/default.nix')
-rw-r--r--nixos/modules/i18n/input-method/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/nixos/modules/i18n/input-method/default.nix b/nixos/modules/i18n/input-method/default.nix
new file mode 100644
index 000000000000..7e6a25bfb084
--- /dev/null
+++ b/nixos/modules/i18n/input-method/default.nix
@@ -0,0 +1,29 @@
+{ config, pkgs, lib, ... }:
+
+with lib;
+
+{
+ options = {
+ i18n.inputMethod = {
+ enabled = mkOption {
+ type = types.nullOr (types.enum [ "ibus" "fcitx" "nabi" "uim" ]);
+ default = null;
+ example = "fcitx";
+ description = ''
+ Select the enabled input method. Input methods is a software to input symbols that are not available on standard input devices.
+
+ Input methods are specially used to input Chinese, Japanese and Korean characters.
+
+ Currently the following input methods are available in NixOS:
+
+ <itemizedlist>
+ <listitem><para>ibus: The intelligent input bus, extra input engines can be added using <literal>i18n.inputMethod.ibus.engines</literal>.</para></listitem>
+ <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>
+ </itemizedlist>
+ '';
+ };
+ };
+ };
+}