From 980a42aaa18585ca4eec20584c8eab2ecdaea6b7 Mon Sep 17 00:00:00 2001 From: Olaf Date: Tue, 21 Jul 2026 09:40:56 +0200 Subject: [PATCH] fonts tweaking --- hosts/darwin/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/hosts/darwin/default.nix b/hosts/darwin/default.nix index ccc3d29..b044e56 100644 --- a/hosts/darwin/default.nix +++ b/hosts/darwin/default.nix @@ -74,13 +74,13 @@ in # Turn off NIX_PATH warnings now that we're using flakes system.checks.verifyNixPath = false; - fonts.packages = - with pkgs; - [ + fonts = { + packages = with pkgs; [ dejavu_fonts emacs-all-the-icons-fonts - # feather-font # from overlayj + # feather-font # from overlayj jetbrains-mono + google-fonts font-awesome noto-fonts noto-fonts-color-emoji @@ -89,12 +89,14 @@ in meslo-lgs-nf nerd-fonts.fira-code nerd-fonts.droid-sans-mono - + noto-fonts-cjk-sans + noto-fonts ] # this adds all nerd-fonts Gigabytes of them, too much. # ++ builtins.filter lib.attrsets.isDerivation (builtins.attrValues pkgs.nerd-fonts) ; + }; # Load configuration that is shared across systems environment.systemPackages = with pkgs;