summaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
Diffstat (limited to 'home')
-rw-r--r--home/ebisu/fortune/system/fonts/default.nix62
1 files changed, 37 insertions, 25 deletions
diff --git a/home/ebisu/fortune/system/fonts/default.nix b/home/ebisu/fortune/system/fonts/default.nix
index 30ab4ac..0a7776f 100644
--- a/home/ebisu/fortune/system/fonts/default.nix
+++ b/home/ebisu/fortune/system/fonts/default.nix
@@ -1,4 +1,4 @@
-{ pkgs, ... }:
+{ pkgs, inputs, ... }:
{
imports = [ ./meowsans ];
@@ -34,30 +34,42 @@
};
};
- home.packages = with pkgs; [
- source-code-pro
- source-han-sans
- noto-fonts
- noto-fonts-cjk-sans
- noto-fonts-cjk-serif
- noto-fonts-color-emoji
- lmodern
- hanazono
- jigmo
- iosevka
- libertine
- sarasa-gothic
- nerdfonts
- cantarell-fonts
- inter
- font-awesome
- joypixels
- pkgs.apple-fonts
- pkgs.hiragino-sans
- weather-icons
- material-design-icons
- meslo-lgs-nf
- ];
+ home.packages =
+ with pkgs;
+ with inputs.apple-fonts.packages.${pkgs.system};
+ [
+ source-code-pro
+ source-han-sans
+ noto-fonts
+ noto-fonts-cjk-sans
+ noto-fonts-cjk-serif
+ noto-fonts-color-emoji
+ lmodern
+ hanazono
+ jigmo
+ iosevka
+ libertine
+ sarasa-gothic
+ nerdfonts
+ cantarell-fonts
+ inter
+ font-awesome
+ joypixels
+ hiragino-sans
+ weather-icons
+ material-design-icons
+ meslo-lgs-nf
+ sf-pro
+ sf-pro-nerd
+ sf-compact
+ sf-compact-nerd
+ sf-mono
+ sf-mono-nerd
+ sf-arabic
+ sf-arabic-nerd
+ ny
+ ny-nerd
+ ];
nixpkgs.config.joypixels.acceptLicense = true;
}