nix-configs/modules/desktop/fonts.nix

20 lines
339 B
Nix
Raw Normal View History

2024-03-03 13:22:10 +00:00
{pkgs, ...}: {
fonts.packages = with pkgs; [
2024-04-03 15:55:39 +00:00
(nerdfonts.override {fonts = ["FiraCode" "AnonymousPro"];})
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-03-03 13:22:10 +00:00
];
fonts.fontDir.enable = true;
}