19 lines
402 B
Nix
19 lines
402 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
imcfg = config.i18n.inputMethod;
|
||
|
in
|
||
|
{
|
||
|
config = mkIf (imcfg.enable && imcfg.type == "hime") {
|
||
|
i18n.inputMethod.package = pkgs.hime;
|
||
|
environment.variables = {
|
||
|
GTK_IM_MODULE = "hime";
|
||
|
QT_IM_MODULE = "hime";
|
||
|
XMODIFIERS = "@im=hime";
|
||
|
};
|
||
|
services.xserver.displayManager.sessionCommands = "${pkgs.hime}/bin/hime &";
|
||
|
};
|
||
|
}
|