nixos-greynix/nixosModules/fonts.nix

26 lines
420 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 14:13:45 +08:00
noto-fonts-cjk-sans
noto-fonts-cjk-extra
2024-11-10 15:47:39 +08:00
noto-fonts-cjk-serif
noto-fonts-emoji
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;
}