summaryrefslogtreecommitdiffstats
path: root/nixos
diff options
context:
space:
mode:
authorEric Sagnes <eric.sagnes@gmail.com>2016-02-16 23:01:03 +0900
committerEric Sagnes <eric.sagnes@gmail.com>2016-02-17 20:44:29 +0900
commit3ed3f061dad30f9ae8b7712b0b46140b415d4ab3 (patch)
treecd4cbe202ee4de4652863770bbd1e82293924b02 /nixos
parent4a199d99552046e2ffd743d501d4ee4696038b42 (diff)
nabi service: init
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/i18n/inputMethod/nabi.nix37
-rw-r--r--nixos/modules/module-list.nix1
2 files changed, 38 insertions, 0 deletions
diff --git a/nixos/modules/i18n/inputMethod/nabi.nix b/nixos/modules/i18n/inputMethod/nabi.nix
new file mode 100644
index 000000000000..7f97135fee1e
--- /dev/null
+++ b/nixos/modules/i18n/inputMethod/nabi.nix
@@ -0,0 +1,37 @@
+{ config, pkgs, lib, ... }:
+
+with lib;
+
+let
+ cfg = config.i18n.inputMethod.nabi;
+in
+{
+ options = {
+
+ i18n.inputMethod.nabi = {
+ enable = mkOption {
+ type = types.bool;
+ default = false;
+ example = true;
+ description = ''
+ Enable nabi input method.
+ Nabi can be used to input Korean.
+ '';
+ };
+ };
+
+ };
+{
+ config = mkIf cfg.enable {
+ environment.systemPackages = [ pkgs.nabi ];
+ qtPlugins = [ pkgs.nabi ];
+
+ environment.variables = {
+ GTK_IM_MODULE = "nabi";
+ QT_IM_MODULE = "nabi";
+ XMODIFIERS = "@im=nabi";
+ };
+
+ services.xserver.displayManager.sessionCommands = "${pkgs.nabi}/bin/nabi &";
+ };
+}
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index 9a7083c3ce8f..7fe4a90a1354 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -45,6 +45,7 @@
./hardware/video/webcam/facetimehd.nix
./i18n/inputMethod/fcitx.nix
./i18n/inputMethod/ibus.nix
+ ./i18n/inputMethod/nabi.nix
./i18n/inputMethod/uim.nix
./installer/tools/auto-upgrade.nix
./installer/tools/nixos-checkout.nix