nix-conf/system/locale.nix

23 lines
450 B
Nix
Raw Normal View History

2024-10-27 13:34:49 -04:00
{pkgs, ...}: {
2024-10-18 23:42:11 -04:00
i18n.defaultLocale = "en_US.UTF-8";
i18n.supportedLocales = [
"en_US.UTF-8/UTF-8"
"ja_JP.UTF-8/UTF-8"
];
i18n.inputMethod = {
enable = true;
type = "fcitx5";
fcitx5.addons = with pkgs; [
fcitx5-mozc
fcitx5-gtk
];
};
fonts.packages = with pkgs; [
noto-fonts
2024-10-24 17:42:01 -04:00
noto-fonts-cjk-sans
2024-10-18 23:42:11 -04:00
source-han-sans
source-han-serif
2024-10-27 13:34:49 -04:00
(nerdfonts.override {fonts = ["JetBrainsMono"];})
2024-10-18 23:42:11 -04:00
];
}