Files
nixos/modules/nixos/input-method.nix
T
2026-01-01 11:26:09 -06:00

14 lines
213 B
Nix

{pkgs, ...}: {
i18n.inputMethod = {
enable = true;
type = "fcitx5";
fcitx5 = {
waylandFrontend = true;
addons = with pkgs; [
fcitx5-mozc
fcitx5-gtk
];
};
};
}