diff options
Diffstat (limited to 'system/default.nix')
-rw-r--r-- | system/default.nix | 9 |
1 files changed, 7 insertions, 2 deletions
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; |