13 lines
202 B
Nix
13 lines
202 B
Nix
|
{pkgs, ...}: {
|
||
|
i18n.inputMethod = {
|
||
|
enabled = "fcitx5";
|
||
|
fcitx5.addons = with pkgs; [
|
||
|
fcitx5-mozc
|
||
|
fcitx5-gtk
|
||
|
];
|
||
|
};
|
||
|
fonts.fonts = with pkgs; [
|
||
|
noto-fonts-cjk-sans
|
||
|
];
|
||
|
}
|