nix-configs/modules/desktop/fonts.nix

20 lines
339 B
Nix
Raw Normal View History

2024-03-03 14:22:10 +01:00
{pkgs, ...}: {
fonts.packages = with pkgs; [
2024-04-03 17:55:39 +02:00
(nerdfonts.override {fonts = ["FiraCode" "AnonymousPro"];})
2024-03-03 14:22:10 +01:00
montserrat
noto-fonts
atkinson-hyperlegible
arkpandora_ttf
liberation_ttf
caladea
carlito
garamond-libre
ocr-a
amiri
libertine
inter
2024-04-10 17:37:36 +02:00
b612
2024-03-03 14:22:10 +01:00
];
fonts.fontDir.enable = true;
}