nixnew/modules/user/modules/fcitx5/default.nix
2025-07-24 20:04:58 -07:00

18 lines
406 B
Nix
Executable file

{ pkgs, ... }: {
i18n.inputMethod = {
enable = true;
type = "fcitx5";
fcitx5.addons = with pkgs; [
fcitx5-mozc
fcitx5-gtk
libsForQt5.fcitx5-qt
];
};
xdg.configFile = {
"fcitx5/config".source = ./config;
"fcitx5/profile".source = ./profile;
"fcitx5/conf/classicui.conf".source = ./classicui.conf;
"mozc/config1.db".source = ./mozc-config1.db;
};
}