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

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

47 lines
846 B
Nix
Raw Normal View History

2016-02-16 22:52:25 +09:00
{
config,
pkgs,
lib,
...
}:
let
imcfg = config.i18n.inputMethod;
cfg = imcfg.uim;
2016-02-16 22:52:25 +09:00
in
{
options = {
i18n.inputMethod.uim = {
toolbar = lib.mkOption {
type = lib.types.enum [
"gtk"
"gtk3"
"gtk-systray"
"gtk3-systray"
"qt5"
];
2016-02-16 22:52:25 +09:00
default = "gtk";
example = "gtk-systray";
description = ''
selected UIM toolbar.
'';
};
};
};
config = lib.mkIf (imcfg.enable && imcfg.type == "uim") {
2016-04-04 18:11:20 +09:00
i18n.inputMethod.package = pkgs.uim;
2016-02-16 22:52:25 +09:00
environment.variables = {
GTK_IM_MODULE = "uim";
QT_IM_MODULE = "uim";
XMODIFIERS = "@im=uim";
};
services.xserver.displayManager.sessionCommands = ''
${pkgs.uim}/bin/uim-xim &
${pkgs.uim}/bin/uim-toolbar-${cfg.toolbar} &
'';
};
}