From 7369d1bc6187fb48bfa5982c4dba426e66fc6326 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sat, 7 Dec 2024 00:35:02 -0600 Subject: [PATCH] refactor(hm/price): improve handling of fonts --- users/price/conf/fonts/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/users/price/conf/fonts/default.nix b/users/price/conf/fonts/default.nix index d611fcb5..c687388c 100644 --- a/users/price/conf/fonts/default.nix +++ b/users/price/conf/fonts/default.nix @@ -2,9 +2,9 @@ { home.packages = with pkgs; [ fontconfig - (nerdfonts.override { fonts = [ "FiraCode" ]; }) + nerd-fonts.fira-code + nerd-fonts.symbols-only fira-code - fira ibm-plex open-sans noto-fonts @@ -16,15 +16,17 @@ fontconfig = { enable = true; defaultFonts = { - sansSerif = [ "Noto Sans" ]; - serif = [ "Noto Serif" ]; + sansSerif = [ "Noto Sans" "Symbols Nerd Font" ]; + serif = [ "Noto Serif" "Symbols Nerd Font" ]; monospace = [ - "Fira Code" + "FiraCode Nerd Font" "Noto Sans Mono" + "Symbols Nerd Font Mono" ]; emoji = [ "Twemoji" "Noto Color Emoji" + "Symbols Nerd Font Mono" ]; }; };