Files
nixos-config/modules/sys/hardware/input.nix
2025-10-06 19:19:39 -04:00

12 lines
194 B
Nix

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