diff options
author | Soispha <soispha@vhack.eu> | 2023-08-28 20:42:20 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-08-28 20:42:20 +0200 |
commit | 093a7191feee4be6a27a76bb17a4f40d9dfcab36 (patch) | |
tree | 83ed279fc5b6b037422bc78be08d766ca480d963 /sys | |
parent | Feat(hm/conf/firefox): Add a nixpkgs issue search (diff) | |
download | nixos-config-093a7191feee4be6a27a76bb17a4f40d9dfcab36.tar.gz nixos-config-093a7191feee4be6a27a76bb17a4f40d9dfcab36.zip |
Fix(sys/font): Correct the font names
Diffstat (limited to '')
-rw-r--r-- | sys/font/default.nix | 6 |
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"; } |