nix-config/hosts/common/optional/desktop/japanese.nix
2024-12-02 14:21:42 +01:00

14 lines
256 B
Nix

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