nix-config/hosts/common/optional/desktop/japanese.nix
2024-02-02 19:59:41 +01:00

12 lines
205 B
Nix

{pkgs, ...}: {
i18n.inputMethod = {
enabled = "fcitx5";
fcitx5.addons = with pkgs; [
fcitx5-mozc
fcitx5-gtk
];
};
fonts.packages = with pkgs; [
noto-fonts-cjk-sans
];
}