1

System: Install victor-mono + monolisa

This commit is contained in:
2025-07-06 03:10:09 +02:00
parent 02e8932376
commit 11a6f1b8cc

View File

@ -329,6 +329,8 @@ with mylib.networking; {
fonts = { fonts = {
enableDefaultPackages = true; # Some default fonts for unicode coverage enableDefaultPackages = true; # Some default fonts for unicode coverage
# https://wiki.nixos.org/wiki/Fonts#Flatpak_applications_can.27t_find_system_fonts
fontDir.enable = true; # Puts fonts to /run/current-system/sw/share/X11/fonts fontDir.enable = true; # Puts fonts to /run/current-system/sw/share/X11/fonts
# Font packages go here. # Font packages go here.
@ -337,6 +339,8 @@ with mylib.networking; {
packages = with pkgs; [ packages = with pkgs; [
# Monospace fonts # Monospace fonts
nerd-fonts.jetbrains-mono nerd-fonts.jetbrains-mono
nerd-fonts.victor-mono
monolisa
# Sans/Serif fonts # Sans/Serif fonts
noto-fonts noto-fonts
@ -351,10 +355,14 @@ with mylib.networking; {
hinting.enable = true; hinting.enable = true;
hinting.autohint = true; hinting.autohint = true;
cache32Bit = true; cache32Bit = true;
# https://wiki.nixos.org/wiki/Fonts#Noto_Color_Emoji_doesn.27t_render_on_Firefox
useEmbeddedBitmaps = true;
defaultFonts = { defaultFonts = {
serif = ["Noto Serif CJK SC"]; serif = ["Noto Serif CJK SC"];
sansSerif = ["Noto Sans CJK SC"]; sansSerif = ["Noto Sans CJK SC"];
monospace = ["JetBrainsMono Nerd Font Mono"]; monospace = ["JetBrainsMono Nerd Font Mono"]; # NOTE: Match with color.font
}; };
}; };
}; };