nixos-greynix/fonts.nix

22 lines
372 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
proggyfonts
];
fonts.fontDir.enable = true;
}