adyya-flake/fonts.mod.nix
Ittihadyya 00bde57032
All checks were successful
/ Check formatting (push) Successful in 1m31s
forgot to add hyphen
2024-12-10 21:16:21 +02:00

21 lines
487 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
nerd-fonts.fira-code
nerd-fonts.ubuntu-sans
charis-sil
];
}
)
];
}