aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/nixos/modules/i18n/input-method/ibus.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/nixos/modules/i18n/input-method/ibus.nix')
-rw-r--r--nixpkgs/nixos/modules/i18n/input-method/ibus.nix67
1 files changed, 67 insertions, 0 deletions
diff --git a/nixpkgs/nixos/modules/i18n/input-method/ibus.nix b/nixpkgs/nixos/modules/i18n/input-method/ibus.nix
new file mode 100644
index 00000000000..8109ef76c40
--- /dev/null
+++ b/nixpkgs/nixos/modules/i18n/input-method/ibus.nix
@@ -0,0 +1,67 @@
+{ config, pkgs, lib, ... }:
+
+with lib;
+
+let
+ cfg = config.i18n.inputMethod.ibus;
+ ibusPackage = pkgs.ibus-with-plugins.override { plugins = cfg.engines; };
+ ibusEngine = types.package // {
+ name = "ibus-engine";
+ check = x: (lib.types.package.check x) && (attrByPath ["meta" "isIbusEngine"] false x);
+ };
+
+ impanel =
+ if cfg.panel != null
+ then "--panel=${cfg.panel}"
+ else "";
+
+ ibusAutostart = pkgs.writeTextFile {
+ name = "autostart-ibus-daemon";
+ destination = "/etc/xdg/autostart/ibus-daemon.desktop";
+ text = ''
+ [Desktop Entry]
+ Name=IBus
+ Type=Application
+ Exec=${ibusPackage}/bin/ibus-daemon --daemonize --xim ${impanel}
+ '';
+ };
+in
+{
+ options = {
+ i18n.inputMethod.ibus = {
+ engines = mkOption {
+ type = with types; listOf ibusEngine;
+ default = [];
+ example = literalExample "with pkgs.ibus-engines; [ mozc hangul ]";
+ description =
+ let
+ enginesDrv = filterAttrs (const isDerivation) pkgs.ibus-engines;
+ engines = concatStringsSep ", "
+ (map (name: "<literal>${name}</literal>") (attrNames enginesDrv));
+ in
+ "Enabled IBus engines. Available engines are: ${engines}.";
+ };
+ panel = mkOption {
+ type = with types; nullOr path;
+ default = null;
+ example = literalExample "''${pkgs.plasma5.plasma-desktop}/lib/libexec/kimpanel-ibus-panel";
+ description = "Replace the IBus panel with another panel.";
+ };
+ };
+ };
+
+ config = mkIf (config.i18n.inputMethod.enabled == "ibus") {
+ i18n.inputMethod.package = ibusPackage;
+
+ # Without dconf enabled it is impossible to use IBus
+ environment.systemPackages = with pkgs; [
+ gnome3.dconf ibusAutostart
+ ];
+
+ environment.variables = {
+ GTK_IM_MODULE = "ibus";
+ QT_IM_MODULE = "ibus";
+ XMODIFIERS = "@im=ibus";
+ };
+ };
+}