aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-08-28 20:42:20 +0200
committerSoispha <soispha@vhack.eu>2023-08-28 20:42:20 +0200
commit093a7191feee4be6a27a76bb17a4f40d9dfcab36 (patch)
tree83ed279fc5b6b037422bc78be08d766ca480d963
parentFeat(hm/conf/firefox): Add a nixpkgs issue search (diff)
downloadnixos-config-093a7191feee4be6a27a76bb17a4f40d9dfcab36.zip
Fix(sys/font): Correct the font names
-rw-r--r--sys/font/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/font/default.nix b/sys/font/default.nix
index cad579b9..f6b0e191 100644
--- a/sys/font/default.nix
+++ b/sys/font/default.nix
@@ -20,13 +20,13 @@ in {
defaultFonts = {
# FIXME: Add a serif font <2023-08-28>
serif = [];
- sansSerif = lib.mkForce ["Overpass Sans Serif"];
- monospace = lib.mkForce ["Sauce Code Pro Mono"];
+ sansSerif = lib.mkForce ["Overpass Nerd Font"];
+ monospace = lib.mkForce ["SauceCodePro Nerd Font Mono"];
emoji = lib.mkForce ["Noto Color Emoji"];
};
allowType1 = false;
allowBitmaps = false;
};
};
- console.font = "Saurce Code Pro Mono";
+ console.font = "SauceCodePro Nerd Font Mono";
}