mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-05 15:16:23 +01:00
21 lines
358 B
Nix
21 lines
358 B
Nix
{pkgs, ...}: {
|
|
fonts.packages = with pkgs; [
|
|
(nerdfonts.override {fonts = ["FiraCode" "AnonymousPro"];})
|
|
montserrat
|
|
noto-fonts
|
|
atkinson-hyperlegible
|
|
arkpandora_ttf
|
|
liberation_ttf
|
|
caladea
|
|
carlito
|
|
garamond-libre
|
|
ocr-a
|
|
amiri
|
|
libertine
|
|
inter
|
|
b612
|
|
departure-mono
|
|
];
|
|
fonts.fontDir.enable = true;
|
|
}
|