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

15 lines
256 B
Nix
Raw Normal View History

{pkgs, ...}: {
i18n.inputMethod = {
2024-12-02 14:20:49 +01:00
enable = true;
type = "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
];
}