2016-02-10 10:10:35 +03:00
|
|
|
{ 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);
|
|
|
|
};
|
2016-02-27 03:07:29 +03:00
|
|
|
|
2023-03-19 23:44:31 +03:00
|
|
|
impanel = optionalString (cfg.panel != null) "--panel=${cfg.panel}";
|
2017-01-21 03:50:52 +03:00
|
|
|
|
2016-02-27 03:07:29 +03:00
|
|
|
ibusAutostart = pkgs.writeTextFile {
|
|
|
|
name = "autostart-ibus-daemon";
|
|
|
|
destination = "/etc/xdg/autostart/ibus-daemon.desktop";
|
|
|
|
text = ''
|
|
|
|
[Desktop Entry]
|
|
|
|
Name=IBus
|
|
|
|
Type=Application
|
2017-01-21 03:50:52 +03:00
|
|
|
Exec=${ibusPackage}/bin/ibus-daemon --daemonize --xim ${impanel}
|
2022-06-08 14:38:55 +03:00
|
|
|
# GNOME will launch ibus using systemd
|
|
|
|
NotShowIn=GNOME;
|
2016-02-27 03:07:29 +03:00
|
|
|
'';
|
|
|
|
};
|
2016-02-10 10:10:35 +03:00
|
|
|
in
|
|
|
|
{
|
2019-12-10 04:51:19 +03:00
|
|
|
imports = [
|
|
|
|
(mkRenamedOptionModule [ "programs" "ibus" "plugins" ] [ "i18n" "inputMethod" "ibus" "engines" ])
|
|
|
|
];
|
|
|
|
|
2016-02-10 10:10:35 +03:00
|
|
|
options = {
|
|
|
|
i18n.inputMethod.ibus = {
|
|
|
|
engines = mkOption {
|
|
|
|
type = with types; listOf ibusEngine;
|
|
|
|
default = [];
|
2021-10-03 19:06:03 +03:00
|
|
|
example = literalExpression "with pkgs.ibus-engines; [ mozc hangul ]";
|
2016-02-27 03:43:54 +03:00
|
|
|
description =
|
|
|
|
let
|
2016-09-06 16:53:15 +03:00
|
|
|
enginesDrv = filterAttrs (const isDerivation) pkgs.ibus-engines;
|
|
|
|
engines = concatStringsSep ", "
|
2022-07-20 13:32:04 +03:00
|
|
|
(map (name: "`${name}`") (attrNames enginesDrv));
|
2016-02-27 03:43:54 +03:00
|
|
|
in
|
2022-07-20 13:32:04 +03:00
|
|
|
lib.mdDoc "Enabled IBus engines. Available engines are: ${engines}.";
|
2016-02-10 10:10:35 +03:00
|
|
|
};
|
2017-01-21 03:50:52 +03:00
|
|
|
panel = mkOption {
|
|
|
|
type = with types; nullOr path;
|
|
|
|
default = null;
|
2023-11-26 10:55:37 +03:00
|
|
|
example = literalExpression ''"''${pkgs.plasma5Packages.plasma-desktop}/libexec/kimpanel-ibus-panel"'';
|
2022-07-20 13:32:04 +03:00
|
|
|
description = lib.mdDoc "Replace the IBus panel with another panel.";
|
2017-01-21 03:50:52 +03:00
|
|
|
};
|
2016-02-10 10:10:35 +03:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-02-16 17:10:46 +03:00
|
|
|
config = mkIf (config.i18n.inputMethod.enabled == "ibus") {
|
2016-04-04 12:11:20 +03:00
|
|
|
i18n.inputMethod.package = ibusPackage;
|
|
|
|
|
2019-11-09 22:24:39 +03:00
|
|
|
environment.systemPackages = [
|
|
|
|
ibusAutostart
|
|
|
|
];
|
|
|
|
|
2016-02-10 10:10:35 +03:00
|
|
|
# Without dconf enabled it is impossible to use IBus
|
2019-11-09 22:24:39 +03:00
|
|
|
programs.dconf.enable = true;
|
|
|
|
|
2020-04-23 15:00:00 +03:00
|
|
|
programs.dconf.packages = [ ibusPackage ];
|
2019-12-30 08:01:13 +03:00
|
|
|
|
2019-11-09 22:24:39 +03:00
|
|
|
services.dbus.packages = [
|
2022-06-08 14:36:52 +03:00
|
|
|
ibusPackage
|
2016-02-27 03:07:29 +03:00
|
|
|
];
|
2016-02-10 10:10:35 +03:00
|
|
|
|
|
|
|
environment.variables = {
|
|
|
|
GTK_IM_MODULE = "ibus";
|
|
|
|
QT_IM_MODULE = "ibus";
|
|
|
|
XMODIFIERS = "@im=ibus";
|
|
|
|
};
|
2020-03-29 01:09:26 +03:00
|
|
|
|
2020-04-04 23:45:22 +03:00
|
|
|
xdg.portal.extraPortals = mkIf config.xdg.portal.enable [
|
2020-03-29 01:09:26 +03:00
|
|
|
ibusPackage
|
|
|
|
];
|
2016-02-10 10:10:35 +03:00
|
|
|
};
|
2021-11-19 02:26:27 +03:00
|
|
|
|
2016-02-10 10:10:35 +03:00
|
|
|
# uses attributes of the linked package
|
|
|
|
meta.buildDocsInSandbox = false;
|
|
|
|
}
|