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
packages = with pkgs; [
# good serif ui font
alegreya
# good sans-serif ui font
inter
# contains good serif ui font and support for Japanese
ibm-plex
# good monospace coding and terminal font
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
@ -446,8 +438,8 @@ in
enable = true;
defaultFonts = {
monospace = [ "JetBrains Mono" ];
sansSerif = [ "Inter" ];
serif = [ "Alegreya" ];
sansSerif = [ "Inter Display" ];
serif = [ "IBM Plex Serif" ];
};
};
};