Use rime-ice in nixpkgs instead of self-packaged

- remove package rime-ice
- remove overlay of rime-ice
- regenerate nvfetcher
- add configuration for rime-ice
- add zhwiki and moegirl as dict
This commit is contained in:
ulic-youthlic 2025-06-20 03:38:56 +08:00
parent ebb171dc3f
commit d390953280
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
12 changed files with 110 additions and 71 deletions

View file

@ -0,0 +1,12 @@
{
osConfig ? null,
lib,
...
}: {
config = lib.mkIf (osConfig != null) {
xdg.dataFile = {
"fcitx5/rime/default.custom.yaml".source = ./default.custom.yaml;
"fcitx5/rime/double_pinyin_flypy.custom.yaml".source = ./double_pinyin_flypy.custom.yaml;
};
};
}