summary refs log tree commit diff
path: root/nixos/modules/i18n/input-method/hime.nix
blob: a1b346a0f840334f6fc42098881544f8e28a3d64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ config, pkgs, ... }:

with lib;
{
  options = {
    i18n.inputMethod.hime = {
      enableChewing = mkOption {
        type    =  with types; nullOr bool;
        default = null;
        description = "enable chewing input method";
      };
      enableAnthy = mkOption {
        type    =  with types; nullOr bool;
        default = null;
        description = "enable anthy input method";
      };
    };
  };

  config = mkIf (config.i18n.inputMethod.enabled == "hime") {
    environment.variables = {
      GTK_IM_MODULE = "hime";
      QT_IM_MODULE  = "hime";
      XMODIFIERS    = "@im=hime";
    };
    services.xserver.displayManager.sessionCommands = "${pkgs.hime}/bin/hime &";
  };
}