2016-02-10 08:10:35 +01: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 01:07:29 +01:00
|
|
|
|
|
|
|
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 -dx
|
|
|
|
'';
|
|
|
|
};
|
2016-02-10 08:10:35 +01:00
|
|
|
in
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
i18n.inputMethod.ibus = {
|
|
|
|
engines = mkOption {
|
|
|
|
type = with types; listOf ibusEngine;
|
|
|
|
default = [];
|
|
|
|
example = literalExample "with pkgs.ibus-engines; [ mozc hangul ]";
|
|
|
|
description = ''
|
|
|
|
Enabled IBus engines.
|
|
|
|
Available engines can be found by running `nix-env "<nixpkgs>" . -qaP -A ibus-engines`.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-02-16 15:10:46 +01:00
|
|
|
config = mkIf (config.i18n.inputMethod.enabled == "ibus") {
|
2016-02-10 08:10:35 +01:00
|
|
|
# Without dconf enabled it is impossible to use IBus
|
2016-02-27 01:07:29 +01:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
ibusPackage ibus-qt gnome3.dconf ibusAutostart
|
|
|
|
];
|
2016-02-10 08:10:35 +01:00
|
|
|
|
|
|
|
environment.variables = {
|
|
|
|
GTK_IM_MODULE = "ibus";
|
|
|
|
QT_IM_MODULE = "ibus";
|
|
|
|
XMODIFIERS = "@im=ibus";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|