From 598989f2adba121f768ba177e4e157980ae9c65d Mon Sep 17 00:00:00 2001
From: Oliver Davies <oliver@oliverdavies.dev>
Date: Wed, 25 Sep 2024 10:07:26 +0100
Subject: [PATCH] Revert "Make Terminus the default font"

This reverts commit 1e83c4bf8b16bc60544445cbef6f11160e87de52.
---
 home/opdavies/modules/alacritty.nix | 4 +---
 lib/theme/default.nix               | 2 +-
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/home/opdavies/modules/alacritty.nix b/home/opdavies/modules/alacritty.nix
index 7f090f00..f4c284fe 100644
--- a/home/opdavies/modules/alacritty.nix
+++ b/home/opdavies/modules/alacritty.nix
@@ -27,11 +27,9 @@ in
       font = {
         size = toInt "${theme.fonts.monospace.size}";
 
+        bold.style = "Regular";
         normal.family = "${theme.fonts.monospace.name}";
 
-        italic.style = "Bold";
-        normal.style = "Bold";
-
         offset.y = 12;
         glyph_offset.y = 6;
       };
diff --git a/lib/theme/default.nix b/lib/theme/default.nix
index 23e4398e..e8c934fc 100644
--- a/lib/theme/default.nix
+++ b/lib/theme/default.nix
@@ -2,7 +2,7 @@
 {
   fonts = {
     monospace = {
-      name = "Terminus";
+      name = "MesloLGSDZ Nerd Font Mono";
       # fc-list : family | sort | grep "Nerd Font"
 
       package = pkgs.nerdfonts.override { fonts = [ "Meslo" ]; };