From aa3888969eb30b86480ffd4aa787c6221b6e6724 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 9 Apr 2026 16:10:30 +0000 Subject: [PATCH] shell: switch terminal font to FiraMono Nerd Font https://claude.ai/code/session_01PwAXuaoJx7qD5FhVLsn7Sn --- home-manager/fred.nix | 2 +- settings/shell.nix | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/home-manager/fred.nix b/home-manager/fred.nix index ce014c0..ee9be06 100644 --- a/home-manager/fred.nix +++ b/home-manager/fred.nix @@ -17,7 +17,7 @@ # Ghostty config home.file.".config/ghostty/config".force = true; home.file.".config/ghostty/config".text = '' - font-family = MesloLGS Nerd Font + font-family = FiraMono Nerd Font font-size = 11 font-thicken = true theme = dark:Catppuccin Mocha,light:Catppuccin Latte diff --git a/settings/shell.nix b/settings/shell.nix index c70d23e..3eacc74 100644 --- a/settings/shell.nix +++ b/settings/shell.nix @@ -8,6 +8,7 @@ # Install Nerd Fonts for icon support fonts.packages = with pkgs; [ nerd-fonts.fira-code + nerd-fonts.fira-mono nerd-fonts.jetbrains-mono nerd-fonts.meslo-lg ];