more fonts

This commit is contained in:
Christoph Cullmann 2024-08-13 21:00:41 +02:00
parent df85ff40e6
commit 941d7725e5
No known key found for this signature in database

View file

@ -425,21 +425,28 @@ in
# install a list of useful fonts # install a list of useful fonts
packages = with pkgs; [ packages = with pkgs; [
# large family of sans, serif and mono fonts with good unicode coverage # good UI sans serif fonts family
ibm-plex inter
# fonts patched with all needed symbols my shell prompt needs: # get large parts of unicode covered with the Google Noto fonts family
# cullmann on 🌐 neko in /data/nixos on  master [!?] # all needed symbols that my shell prompt needs
nerdfonts # example: cullmann on 🌐 neko in /data/nixos on  master [!?]
# contains serif font that nicely matches with Inter
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
# contains monospace fonts that match well with Inter
recursive
]; ];
# use some proper default fonts # use some proper default fonts
fontconfig = { fontconfig = {
enable = true; enable = true;
defaultFonts = { defaultFonts = {
monospace = [ "IBM Plex Mono" ]; monospace = [ "Recursive Mono Linear Static" ];
sansSerif = [ "IBM Plex Sans" ]; sansSerif = [ "Inter" ];
serif = [ "IBM Plex Serif" ]; serif = [ "Noto Serif" ];
}; };
}; };
}; };