From 86772926fd2c40fe136dfc0d6f75072ee685001d Mon Sep 17 00:00:00 2001 From: Eclypsed Date: Fri, 19 Sep 2025 10:57:56 -0400 Subject: [PATCH] Switched to Nerd Font version of FiraCode, removed kitty --- modules/home/plasma.nix | 2 +- modules/home/zsh.nix | 12 ------------ modules/system/fonts.nix | 2 +- 3 files changed, 2 insertions(+), 14 deletions(-) diff --git a/modules/home/plasma.nix b/modules/home/plasma.nix index 0a0b95b..904e7d2 100644 --- a/modules/home/plasma.nix +++ b/modules/home/plasma.nix @@ -31,7 +31,7 @@ jade = { name = "Jade"; font = { - name = "FiraCode"; + name = "FiraCode Nerd Font"; }; extraConfig = { Appearance = { diff --git a/modules/home/zsh.nix b/modules/home/zsh.nix index ea17b7b..cb04c77 100644 --- a/modules/home/zsh.nix +++ b/modules/home/zsh.nix @@ -1,5 +1,4 @@ { - pkgs, ... }: { @@ -8,17 +7,6 @@ enable = true; enableZshIntegration = true; }; - kitty = { - enable = true; - enableGitIntegration = true; - font = { - name = "FiraCode Nerd Font"; - package = pkgs.nerd-fonts.fira-code; - }; - shellIntegration = { - enableZshIntegration = true; - }; - }; zsh = { enable = true; enableCompletion = true; diff --git a/modules/system/fonts.nix b/modules/system/fonts.nix index dfabe9d..3ecaf35 100644 --- a/modules/system/fonts.nix +++ b/modules/system/fonts.nix @@ -7,7 +7,7 @@ enableDefaultPackages = true; fontconfig.enable = true; packages = with pkgs; [ - fira-code + nerd-fonts.fira-code ]; }; }