52b903b3c4
- fix inputMethod.enable hime by adding module list - rm hime-all package, because chewing, anthy modules does not work well
15 lines
364 B
Nix
15 lines
364 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
{
|
|
config = mkIf (config.i18n.inputMethod.enabled == "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 &";
|
|
};
|
|
}
|