summary refs log tree commit diff
path: root/nixos/modules/i18n/input-method/fcitx5.nix
blob: 44962d202fe1697f4526ce4b6515225a2e075a65 (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
29
30
31
32
33
{ config, pkgs, lib, ... }:

with lib;

let
  im = config.i18n.inputMethod;
  cfg = im.fcitx5;
  fcitx5Package = pkgs.fcitx5-with-addons.override { inherit (cfg) addons; };
in
  {
    options = {
      i18n.inputMethod.fcitx5 = {
        addons = mkOption {
          type = with types; listOf package;
          default = [];
          example = with pkgs; [ fcitx5-rime ];
          description = ''
            Enabled Fcitx5 addons.
          '';
        };
      };
    };

    config = mkIf (im.enabled == "fcitx5") {
      i18n.inputMethod.package = fcitx5Package;

      environment.variables = {
        GTK_IM_MODULE = "fcitx";
        QT_IM_MODULE = "fcitx";
        XMODIFIERS = "@im=fcitx";
      };
    };
  }