adyya-flake/fonts.mod.nix

21 lines
477 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
];
}
)
];
}