nixos-greynix/nixosModules/fonts.nix
2025-01-19 14:19:34 +08:00

24 lines
393 B
Nix

{ 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
iosevka
nerdfonts
];
fonts.fontDir.enable = true;
}