···5656 scope = "Group registration for D. E. Shaw employees who collectively maintain packages.";
5757 };
58585959+ determinatesystems = {
6060+ # Verify additions to this team with at least one already existing member of the team.
6161+ members = [
6262+ cole-h
6363+ grahamc
6464+ ];
6565+ scope = "Group registration for packages maintained by Determinate Systems.";
6666+ };
6767+5968 freedesktop = {
6069 members = [ jtojnar worldofpeace ];
6170 scope = "Maintain Freedesktop.org packages for graphical desktop.";
+2-1
nixos/modules/i18n/input-method/default.nix
···2929 options.i18n = {
3030 inputMethod = {
3131 enabled = mkOption {
3232- type = types.nullOr (types.enum [ "ibus" "fcitx" "fcitx5" "nabi" "uim" "hime" ]);
3232+ type = types.nullOr (types.enum [ "ibus" "fcitx" "fcitx5" "nabi" "uim" "hime" "kime" ]);
3333 default = null;
3434 example = "fcitx";
3535 description = ''
···4646 <listitem><para>nabi: A Korean input method based on XIM. Nabi doesn't support Qt 5.</para></listitem>
4747 <listitem><para>uim: The universal input method, is a library with a XIM bridge. uim mainly support Chinese, Japanese and Korean.</para></listitem>
4848 <listitem><para>hime: An extremely easy-to-use input method framework.</para></listitem>
4949+ <listitem><para>kime: Koream IME.</para></listitem>
4950 </itemizedlist>
5051 '';
5152 };
+22
nixos/modules/i18n/input-method/default.xml
···4040 Hime: An extremely easy-to-use input method framework.
4141 </para>
4242 </listitem>
4343+ <listitem>
4444+ <para>
4545+ Kime: Korean IME
4646+ </para>
4747+ </listitem>
4348 </itemizedlist>
4449 <section xml:id="module-services-input-methods-ibus">
4550 <title>IBus</title>
···263268<programlisting>
264269i18n.inputMethod = {
265270 <link linkend="opt-i18n.inputMethod.enabled">enabled</link> = "hime";
271271+};
272272+</programlisting>
273273+ </section>
274274+ <section xml:id="module-services-input-methods-kime">
275275+ <title>Kime</title>
276276+277277+ <para>
278278+ Kime is Korean IME. it's built with Rust language and let you get simple, safe, fast Korean typing
279279+ </para>
280280+281281+ <para>
282282+ The following snippet can be used to configure Kime:
283283+ </para>
284284+285285+<programlisting>
286286+i18n.inputMethod = {
287287+ <link linkend="opt-i18n.inputMethod.enabled">enabled</link> = "kime";
266288};
267289</programlisting>
268290 </section>