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