nix-configs/modules/desktop/fonts.nix

23 lines
366 B
Nix
Raw Normal View History

2024-03-03 13:22:10 +00:00
{pkgs, ...}: {
fonts.packages = with pkgs; [
2025-01-01 02:12:41 +00:00
nerd-fonts.fira-code
nerd-fonts.departure-mono
2024-11-20 09:39:37 +00:00
google-fonts
2024-03-03 13:22:10 +00:00
montserrat
noto-fonts
atkinson-hyperlegible
arkpandora_ttf
liberation_ttf
caladea
carlito
garamond-libre
ocr-a
amiri
libertine
inter
2024-04-10 15:37:36 +00:00
b612
2024-09-02 17:14:45 +00:00
departure-mono
2024-03-03 13:22:10 +00:00
];
fonts.fontDir.enable = true;
}