From c10b183683bd8f13aab1e7f7948bd518da8f5aa1 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Sun, 22 Jun 2025 00:45:43 -0400 Subject: add apple fonts --- system/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'system') diff --git a/system/default.nix b/system/default.nix index df60ef5..6cf0e9d 100644 --- a/system/default.nix +++ b/system/default.nix @@ -1,4 +1,5 @@ { + inputs, config, pkgs, ... @@ -145,7 +146,7 @@ ]; # fonts - fonts.packages = with pkgs; [ + fonts.packages = (with pkgs; [ corefonts dejavu_fonts fira-code @@ -158,7 +159,11 @@ noto-fonts-emoji twemoji-color-font vistafonts - ]; + ]) ++ (with inputs.apple-fonts.packages.${pkgs.system}; [ + sf-pro + sf-mono + sf-compact + ]); fonts.fontconfig = { enable = true; -- cgit v1.2.3-freya