From 079daf44aba0ac0f70ebe867179f53417e9ad803 Mon Sep 17 00:00:00 2001 From: larstvei Date: Sun, 31 Aug 2025 14:51:02 +0200 Subject: [PATCH] Switch back to normal source code pro font --- home/fonts/default.nix | 2 +- system/nixos/default.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/home/fonts/default.nix b/home/fonts/default.nix index 01090c4..cdccd96 100644 --- a/home/fonts/default.nix +++ b/home/fonts/default.nix @@ -2,7 +2,7 @@ with pkgs; [ iosevka - nerd-fonts.sauce-code-pro + source-code-pro source-sans source-serif ] diff --git a/system/nixos/default.nix b/system/nixos/default.nix index 3e850f5..e3e1966 100644 --- a/system/nixos/default.nix +++ b/system/nixos/default.nix @@ -8,7 +8,7 @@ defaultFonts = { serif = [ "Source Serif 4" ]; sansSerif = [ "Source Sans 3" ]; - monospace = [ "SauceCodePro Nerd Font" ]; + monospace = [ "Source Code Pro" ]; }; }; };