From 48792e9514cc602a0ebb02acde6164af8bf3ff64 Mon Sep 17 00:00:00 2001 From: kiana-S Date: Sat, 11 May 2024 19:18:24 -0400 Subject: [PATCH] Don't use nerd font in terminal Nerd fonts tend to mess with text dimensions, so let's not do that. --- home-manager/shell/alacritty.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home-manager/shell/alacritty.nix b/home-manager/shell/alacritty.nix index 89346df..21ab827 100644 --- a/home-manager/shell/alacritty.nix +++ b/home-manager/shell/alacritty.nix @@ -32,7 +32,7 @@ }; font = - let family = "VictorMono Nerd Font"; + let family = "VictorMono"; font-style = style: { inherit family style; }; in { normal = font-style "Regular";