Files
dotfiles/system-modules/fcitx5.nix
Lennart J. Kurzweg (Nx2) c41e9f4f17 qtwebengine is cooked
2026-01-04 14:36:56 +01:00

15 lines
289 B
Nix

{ pkgs, ... }@all: with all; {
i18n.inputMethod = {
enable = true;
type = "fcitx5";
fcitx5 = {
waylandFrontend = true;
addons = with pkgs; [
fcitx5-gtk
kdePackages.fcitx5-chinese-addons
fcitx5-nord
];
};
};
}