use inter with proper hinting

This commit is contained in:
Christoph Cullmann 2024-08-24 15:58:57 +02:00
parent d142760af1
commit 8ad305b206
No known key found for this signature in database

View file

@ -478,9 +478,25 @@ in
defaultFonts = { defaultFonts = {
emoji = [ "Noto Color Emoji" ]; emoji = [ "Noto Color Emoji" ];
monospace = [ "Monaspace Argon" "IBM Plex Mono" "Noto Sans Mono" ]; monospace = [ "Monaspace Argon" "IBM Plex Mono" "Noto Sans Mono" ];
sansSerif = [ "Lexend" "IBM Plex Sans" "Noto Sans" ]; sansSerif = [ "Inter" "IBM Plex Sans" "Noto Sans" ];
serif = [ "Crimson" "IBM Plex Serif" "Noto Serif" ]; serif = [ "Crimson" "IBM Plex Serif" "Noto Serif" ];
}; };
# fixes pixelation
antialias = true;
# fixes antialiasing blur
hinting = {
enable = true;
style = "full";
autohint = true;
};
# makes it bolder
subpixel = {
rgba = "rgb";
lcdfilter = "default";
};
}; };
}; };