Add japanese support

writing & font support
This commit is contained in:
GHOSCHT 2024-01-07 15:40:53 +01:00
parent 568f5dfbc3
commit ea753db9c4
Signed by: ghoscht
GPG key ID: 2C2C1C62A5388E82
2 changed files with 13 additions and 0 deletions

View file

@ -35,6 +35,7 @@
../common/optional/gaming/gamemode.nix
../common/optional/gaming/steam.nix
../common/optional/gaming/vr.nix
../common/optional/desktop/japanese.nix
];
nixpkgs = {

View file

@ -0,0 +1,12 @@
{pkgs, ...}: {
i18n.inputMethod = {
enabled = "fcitx5";
fcitx5.addons = with pkgs; [
fcitx5-mozc
fcitx5-gtk
];
};
fonts.fonts = with pkgs; [
noto-fonts-cjk-sans
];
}