nixos-greynix/mods/fonts.nix

33 lines
552 B
Nix
Raw Normal View History

2024-11-10 15:47:39 +08:00
{ config, pkgs, ... }:
{
# Fonts
fonts.packages = with pkgs; [
corefonts
vistafonts
noto-fonts
2025-01-19 15:41:30 +08:00
# cjk fonts
2025-01-19 14:13:45 +08:00
noto-fonts-cjk-sans
2024-11-10 15:47:39 +08:00
noto-fonts-cjk-serif
noto-fonts-emoji
2025-01-19 15:41:30 +08:00
vistafonts-cht
source-han-serif
source-han-sans-vf-otf
source-han-sans-vf-ttf
source-han-mono
# coding/terminal fonts
2024-11-10 15:47:39 +08:00
liberation_ttf
fira-code
fira-code-symbols
mplus-outline-fonts.githubRelease
dina-font
2024-12-14 09:14:10 +08:00
proggyfonts
2024-12-14 09:26:18 +08:00
iosevka
2025-01-12 21:00:40 +08:00
nerdfonts
2024-11-10 15:47:39 +08:00
];
2024-12-14 09:14:10 +08:00
2024-11-10 15:47:39 +08:00
fonts.fontDir.enable = true;
}