play more with fonts

This commit is contained in:
Christoph Cullmann 2024-08-05 22:20:01 +02:00
parent 8f5ee23db4
commit 7d44ad2076
No known key found for this signature in database

View file

@ -423,22 +423,14 @@ in
# fonts I use # fonts I use
packages = with pkgs; [ packages = with pkgs; [
# good serif ui font
alegreya
# good sans-serif ui font # good sans-serif ui font
inter inter
# contains good serif ui font and support for Japanese
ibm-plex
# good monospace coding and terminal font # good monospace coding and terminal font
jetbrains-mono jetbrains-mono
# unicode capable fonts for glyph fallback
noto-fonts
noto-fonts-cjk
noto-fonts-cjk-sans
noto-fonts-cjk-serif
noto-fonts-emoji
noto-fonts-extra
]; ];
# tune fontconfig # tune fontconfig
@ -446,8 +438,8 @@ in
enable = true; enable = true;
defaultFonts = { defaultFonts = {
monospace = [ "JetBrains Mono" ]; monospace = [ "JetBrains Mono" ];
sansSerif = [ "Inter" ]; sansSerif = [ "Inter Display" ];
serif = [ "Alegreya" ]; serif = [ "IBM Plex Serif" ];
}; };
}; };
}; };