[NixOS] No source code pro nerd font

This commit is contained in:
2024-12-16 17:23:16 -07:00
parent af706c8f40
commit 80c6ec0080

View File

@@ -25,7 +25,6 @@ makeEnable config "myModules.fonts" true {
nerd-fonts.fantasque-sans-mono
nerd-fonts.iosevka
nerd-fonts.victor-mono
nerd-fonts.source-code-pro
];
fontconfig = {
hinting.autohint = true;
@@ -33,7 +32,7 @@ makeEnable config "myModules.fonts" true {
allowBitmaps = true;
useEmbeddedBitmaps = true;
defaultFonts = {
monospace = [ "Source Code Pro" ];
monospace = [ "JetBrains Mono" ];
sansSerif = [ "Roboto" ];
serif = [ "Source Serif Pro" ];
};