Strip down list of fonts

This commit is contained in:
fleaz 2022-06-15 16:57:05 +02:00
parent 4dec5c5257
commit 82e05f7914
No known key found for this signature in database
GPG key ID: AED15F8FDD04D083

View file

@ -5,9 +5,9 @@
antialias = true; antialias = true;
cache32Bit = true; cache32Bit = true;
defaultFonts = { defaultFonts = {
monospace = [ "Fira Code" "Source Code Pro" "Roboto Mono" "DejaVu Sans Mono" ]; monospace = [ "Fira Code" "DejaVu Sans Mono" ];
sansSerif = [ "Roboto Regular" "DejaVu Sans" ]; sansSerif = [ "DejaVu Sans" ];
serif = [ "Roboto Slab Regular" "DejaVu Serif" ]; serif = [ "DejaVu Serif" ];
}; };
}; };
enableDefaultFonts = true; enableDefaultFonts = true;
@ -15,14 +15,6 @@
fonts = with pkgs; [ fonts = with pkgs; [
dejavu_fonts dejavu_fonts
fira-code fira-code
google-fonts
inconsolata
iosevka
liberation_ttf
nerdfonts
roboto
source-code-pro
ubuntu_font_family
]; ];
}; };
} }