nix-config/modules/darwin/fonts.nix
2025-07-08 10:05:22 +02:00

18 lines
323 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"
];
}