2025-09-04 09:19:09 -06:00
2025-07-17 20:22:54 -06:00
2025-09-04 09:19:09 -06:00
2025-07-17 20:22:54 -06:00
2025-07-17 20:22:54 -06:00
2025-07-17 20:22:54 -06:00
2025-09-04 09:19:09 -06:00
2025-08-13 17:14:12 -06:00

My personal Fcitx5 input tables.

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

Install

Without Nix

...

With Nix

I intend to set up a flake soonish. For now, this can be installed into your NixOS/Home-manager configs with the following snippet:

i18n.inputMethod = {
  enable = true;
  type = "fcitx5";
  fcitx5 = {
    addons = [
      # The package `fcitx5-chinese-addons` is *required*!!
      # See https://github.com/NixOS/nixpkgs/issues/126748.
      pkgs.libsForQt5.fcitx5-chinese-addons
      (let
        repo = pkgs.fetchgit {
          url = "https://gitlab.com/msyds/syd-fcitx5-tables";
          tag = "v1.1.0";
          hash = "sha256-Ndm+XUMFmkcrVH9tLvyiXP4gvShx3ELrURYdp2KfOyQ=";
        };
      in pkgs.callPackage "${repo}/package.nix" {})
    ];
  };
};
Description
No description provided
Readme GPL-3.0 116 KiB
Languages
CMake 63.5%
Nix 36.5%