nix-config/hosts/common/optional/desktop/japanese.nix

14 lines
240 B
Nix
Raw Normal View History

{pkgs, ...}: {
i18n.inputMethod = {
enabled = "fcitx5";
fcitx5.addons = with pkgs; [
fcitx5-mozc
fcitx5-gtk
];
2024-11-05 20:35:10 +01:00
fcitx5.waylandFrontend = true;
};
2024-02-02 19:59:41 +01:00
fonts.packages = with pkgs; [
noto-fonts-cjk-sans
];
}