nixfiles/nixos/profiles/graphical/ime.nix
2025-09-01 08:47:34 -07:00

14 lines
278 B
Nix

{pkgs, ...}: {
services.xserver.desktopManager.runXdgAutostartIfNone = true;
i18n.inputMethod = {
type = "fcitx5";
enable = true;
fcitx5 = {
waylandFrontend = true;
addons = with pkgs; [
fcitx5-anthy
fcitx5-gtk
];
};
};
}