mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-20 07:12:36 +00:00
* nixos: remove with lib * nix-darwin: remove with lib * home-manager: remove with lib * modules/accounts: remove with lib * modules/config: remove with lib * modules/i18n: remove with lib * modules/misc: remove with lib * modules: remove with lib * modules/targets: remove with lib * tests/modules/firefox: remove with lib * tests/modules/services: remove with lib
44 lines
1 KiB
Nix
44 lines
1 KiB
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
let cfg = config.i18n.inputMethod.uim;
|
|
in {
|
|
options = {
|
|
|
|
i18n.inputMethod.uim = {
|
|
toolbar = lib.mkOption {
|
|
type =
|
|
lib.types.enum [ "gtk" "gtk3" "gtk-systray" "gtk3-systray" "qt4" ];
|
|
default = "gtk";
|
|
example = "gtk-systray";
|
|
description = ''
|
|
Selected UIM toolbar.
|
|
'';
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
config = lib.mkIf (config.i18n.inputMethod.enabled == "uim") {
|
|
i18n.inputMethod.package = pkgs.uim;
|
|
|
|
home.sessionVariables = {
|
|
GTK_IM_MODULE = "uim";
|
|
QT_IM_MODULE = "uim";
|
|
XMODIFIERS = "@im=uim";
|
|
};
|
|
|
|
systemd.user.services.uim-daemon = {
|
|
Unit = {
|
|
Description = "Uim input method editor";
|
|
PartOf = [ "graphical-session.desktop" ];
|
|
};
|
|
Service.ExecStart = toString
|
|
(pkgs.writeShellScript "start-uim-xim-and-uim-toolbar" ''
|
|
${pkgs.uim}/bin/uim-xim &
|
|
${pkgs.uim}/bin/uim-toolbar-${cfg.toolbar}
|
|
'');
|
|
Install.WantedBy = [ "graphical-session.target" ];
|
|
};
|
|
};
|
|
|
|
}
|