Nix package to install rime-japanese
, Japanese input method for rime.
Note
If you are interested in the AUR package, please refer to the aur
branch.
Add this repository to your flake.nix
:
{
inputs.rime-japanese.url = "github:MaikoTan/rime-japanese#nix";
inputs.rime-japanese.inputs.nixpkgs.follows = "nixpkgs";
# ...
}
Then install the package (from home manager):
{
home.packages = with pkgs; [
rime-japanese
];
}