Add japanese support
writing & font support
This commit is contained in:
parent
568f5dfbc3
commit
ea753db9c4
2 changed files with 13 additions and 0 deletions
|
@ -35,6 +35,7 @@
|
||||||
../common/optional/gaming/gamemode.nix
|
../common/optional/gaming/gamemode.nix
|
||||||
../common/optional/gaming/steam.nix
|
../common/optional/gaming/steam.nix
|
||||||
../common/optional/gaming/vr.nix
|
../common/optional/gaming/vr.nix
|
||||||
|
../common/optional/desktop/japanese.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
|
|
12
hosts/common/optional/desktop/japanese.nix
Normal file
12
hosts/common/optional/desktop/japanese.nix
Normal 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
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue