Files
nixos-config/modules/japanese.nix

16 lines
263 B
Nix

{ pkgs, ... }: {
i18n.inputMethod = {
enable = true;
type = "fcitx5";
fcitx5.addons = with pkgs; [
# fcitx5-mozc
fcitx5-mozc-ut
fcitx5-gtk
];
};
fonts.packages = with pkgs; [
migmix # migu japanese font mix
];
}