19 lines
315 B
Nix
19 lines
315 B
Nix
|
{pkgs, ...}: {
|
||
|
fonts.packages = with pkgs; [
|
||
|
(nerdfonts.override {fonts = ["FiraCode"];})
|
||
|
montserrat
|
||
|
noto-fonts
|
||
|
atkinson-hyperlegible
|
||
|
arkpandora_ttf
|
||
|
liberation_ttf
|
||
|
caladea
|
||
|
carlito
|
||
|
garamond-libre
|
||
|
ocr-a
|
||
|
amiri
|
||
|
libertine
|
||
|
inter
|
||
|
];
|
||
|
fonts.fontDir.enable = true;
|
||
|
}
|