Files
DCGOS/home/wayland/fcitx5.nix
2025-07-22 12:18:15 +08:00

26 lines
516 B
Nix

{pkgs, ...}: {
home.file.".local/share/fcitx5/rime" = {
force = true;
recursive = true;
source = pkgs.fetchFromGitHub {
hash = "sha256-s3r8cdEliiPnKWs64Wgi0rC9Ngl1mkIrLnr2tIcyXWw=";
owner = "iDvel";
repo = "rime-ice";
tag = "2025.04.06";
};
};
i18n.inputMethod = {
enable = true;
fcitx5 = {
addons = with pkgs; [
fcitx5-gtk
fcitx5-rime
libsForQt5.fcitx5-qt
];
waylandFrontend = true;
};
type = "fcitx5";
};
}