summaryrefslogtreecommitdiff
path: root/nix/modules/home/fcitx.nix
blob: 19075905f677277bde9f0304e14161a0631501cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, pkgs, lib, ... }:
{
  i18n.inputMethod = {
    type = "fcitx5";
    enable = lib.mkDefault config.monorepo.profiles.graphics.enable;
    fcitx5.addons = if config.monorepo.profiles.graphics.enable then (with pkgs; [
      fcitx5-gtk
      qt6Packages.fcitx5-chinese-addons
      qt6Packages.fcitx5-configtool
      fcitx5-mozc
      fcitx5-rime
    ]) else [];
  };
}