Files
syd-fcitx5-tables/README.md
2025-09-04 09:32:30 -06:00

840 B

My personal Fcitx5 input tables.

The CMake code was nabbed directly from https://github.com/fcitx/fcitx5-table-other.

Install

Without Nix

...

With Nix

This can be installed into your NixOS/Home-manager configs:

i18n.inputMethod = {
  enable = true;
  type = "fcitx5";
  fcitx5 = {
    addons = [
      # The package `fcitx5-chinese-addons` is *required*!!
      # See https://github.com/NixOS/nixpkgs/issues/126748.
      pkgs.kdePackages.fcitx5-chinese-addons
      inputs.syd-fcitx5-tables.packages.${system}.default
    ];
  };
};