adyya-flake/fonts.mod.nix
Ittihadyya 7f1016590f
Some checks failed
/ Check formatting (push) Failing after 1m40s
Updated how NerdFonts gets added to the flake, caused by ee2bb9be3e
2024-12-10 21:12:38 +02:00

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