nix-config/modules/darwin/fonts.nix
2025-09-16 08:33:05 +02:00

18 lines
325 B
Nix

{ pkgs, ... }:
{
fonts.packages = with pkgs; [
atkinson-hyperlegible
jetbrains-mono
open-sans
];
homebrew.casks = [
"font-chomsky"
"font-cormorant-garamond"
"font-crimson-text"
"font-new-york"
"font-sf-compact"
"font-sf-mono"
# "font-sf-pro"
"font-unifrakturmaguntia"
];
}