2023-06-11 15:33:54 +02:00
|
|
|
{ pkgs, ... }: {
|
2023-05-17 14:43:54 +02:00
|
|
|
i18n.inputMethod.enabled = "fcitx5";
|
2023-06-11 15:33:54 +02:00
|
|
|
i18n.inputMethod.fcitx5.addons = [ pkgs.fcitx5-mozc ];
|
2023-05-17 14:43:54 +02:00
|
|
|
|
2023-06-06 02:37:52 +02:00
|
|
|
home-manager.sharedModules = [
|
|
|
|
{
|
2023-06-09 18:34:20 +02:00
|
|
|
xdg.configFile = {
|
|
|
|
"mozc/ibus_config.textproto" = {
|
|
|
|
force = true;
|
|
|
|
source = ./ibus_config.textproto;
|
|
|
|
};
|
|
|
|
"fcitx5/config" = {
|
|
|
|
force = true;
|
|
|
|
source = ./config;
|
|
|
|
};
|
|
|
|
"fcitx5/profile" = {
|
|
|
|
force = true;
|
|
|
|
source = ./profile;
|
|
|
|
};
|
|
|
|
"fcitx5/conf/classicui.conf" = {
|
|
|
|
force = true;
|
|
|
|
source = ./classicui.conf;
|
|
|
|
};
|
|
|
|
"fcitx5/conf/clipboard.conf" = {
|
|
|
|
force = true;
|
|
|
|
source = ./clipboard.conf;
|
|
|
|
};
|
|
|
|
"fcitx5/conf/mozc.conf" = {
|
|
|
|
force = true;
|
|
|
|
source = ./mozc.conf;
|
|
|
|
};
|
|
|
|
"fcitx5/conf/notifications.conf" = {
|
|
|
|
force = true;
|
|
|
|
text = "HiddenNotifications=";
|
|
|
|
};
|
|
|
|
"fcitx5/conf/unicode.conf" = {
|
|
|
|
force = true;
|
|
|
|
text = "TriggerKey=";
|
|
|
|
};
|
|
|
|
};
|
2023-06-06 02:37:52 +02:00
|
|
|
}
|
|
|
|
];
|
2023-05-16 21:35:24 +02:00
|
|
|
}
|