nixos-greynix/fonts.nix

24 lines
472 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
noto-fonts-cjk-sans
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
# pkgs.nerd-fonts._0xproto # can't get nerd fonts working again
# pkgs.nerd-fonts.droid_sans_mono
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;
}