mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
bcc7eff2c5
This commit introduces two new properties: `enable` and `type`, to replace the `enabled` property. `enable` has the same meaning as is common across nixpkgs. `type` has the same meaning as the existing `enabled` property. `enabled` property is now deprecated and will be removed in a future release. Fixes #180654
38 lines
787 B
Nix
38 lines
787 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
imcfg = config.i18n.inputMethod;
|
|
cfg = imcfg.uim;
|
|
in
|
|
{
|
|
options = {
|
|
|
|
i18n.inputMethod.uim = {
|
|
toolbar = mkOption {
|
|
type = types.enum [ "gtk" "gtk3" "gtk-systray" "gtk3-systray" "qt5" ];
|
|
default = "gtk";
|
|
example = "gtk-systray";
|
|
description = ''
|
|
selected UIM toolbar.
|
|
'';
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
config = mkIf (imcfg.enable && imcfg.type == "uim") {
|
|
i18n.inputMethod.package = pkgs.uim;
|
|
|
|
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} &
|
|
'';
|
|
};
|
|
}
|