adyya-flake/fonts.mod.nix
2025-01-17 16:12:10 +02:00

19 lines
404 B
Nix

{
personal.modules = [
(
{pkgs, ...}: {
fonts.packages = with pkgs; [
noto-fonts
noto-fonts-cjk-sans
noto-fonts-emoji
dina-font
wqy_zenhei # this is so that hanzi doesn't look like pixel art
nerd-fonts.noto
nerd-fonts.fira-code
nerd-fonts.ubuntu-sans
charis-sil
];
}
)
];
}