nixpkgs/nixos/modules/i18n/input-method/ibus.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

85 lines
2.3 KiB
Nix
Raw Normal View History

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