summaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-06-22 00:45:43 -0400
committerFreya Murphy <freya@freyacat.org>2025-06-22 00:45:43 -0400
commitc10b183683bd8f13aab1e7f7948bd518da8f5aa1 (patch)
tree5abc6d07598b932971206354749ef19e7e56e9bd /system
parentmove shiniji wireguard secretes to only shinji host (refactor hosts) (diff)
downloaddotfiles-nix-c10b183683bd8f13aab1e7f7948bd518da8f5aa1.tar.gz
dotfiles-nix-c10b183683bd8f13aab1e7f7948bd518da8f5aa1.tar.bz2
dotfiles-nix-c10b183683bd8f13aab1e7f7948bd518da8f5aa1.zip
add apple fonts
Diffstat (limited to 'system')
-rw-r--r--system/default.nix9
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;