2024-01-07 15:40:53 +01:00
|
|
|
{pkgs, ...}: {
|
|
|
|
i18n.inputMethod = {
|
2024-12-02 14:20:49 +01:00
|
|
|
enable = true;
|
|
|
|
type = "fcitx5";
|
2024-01-07 15:40:53 +01:00
|
|
|
fcitx5.addons = with pkgs; [
|
|
|
|
fcitx5-mozc
|
|
|
|
fcitx5-gtk
|
|
|
|
];
|
2024-11-05 20:35:10 +01:00
|
|
|
fcitx5.waylandFrontend = true;
|
2024-01-07 15:40:53 +01:00
|
|
|
};
|
2024-02-02 19:59:41 +01:00
|
|
|
fonts.packages = with pkgs; [
|
2024-01-07 15:40:53 +01:00
|
|
|
noto-fonts-cjk-sans
|
|
|
|
];
|
|
|
|
}
|