adyya-flake/fonts.mod.nix
2024-11-26 15:30:26 +02:00

20 lines
469 B
Nix

{
personal.modules = [
(
{pkgs, ...}: {
fonts.packages = with pkgs; [
noto-fonts
noto-fonts-cjk-sans
noto-fonts-emoji
fira-code
fira-code-symbols # this is probably redundant, whatever
dina-font
proggyfonts
wqy_zenhei # this is so that hanzi doesn't look like pixel art
nerdfonts # all of them, apparently
charis-sil
];
}
)
];
}