mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-05 23:26:23 +01:00
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;
|
||
|
}
|