mirror of
https://github.com/Dichgrem/DCGOS.git
synced 2025-12-16 19:22:00 -05:00
26 lines
516 B
Nix
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";
|
|
};
|
|
}
|