14 lines
256 B
Nix
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
|
|
];
|
|
}
|