summaryrefslogtreecommitdiff
path: root/modules/pc/software/input.nix
blob: 5d4308522a23c6ad421e30486edfef9449169703 (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
{ pkgs, ... }:
{
  i18n = {
    inputMethod = {
      enable = true;
      type = "fcitx5";

      fcitx5 = {
        waylandFrontend = true;

        addons = with pkgs; [
          fcitx5-configtool
          fcitx5-gtk
          fcitx5-hangul
          fcitx5-mozc
          fcitx5-rime
          rime-data
          catppuccin-fcitx5
        ];
      };
    };
  };
}