nix-config/modules/darwin/fonts.nix
2025-11-23 07:48:37 +01:00

12 lines
204 B
Nix

{ pkgs, ... }:
{
fonts.packages = with pkgs; [
jetbrains-mono
];
homebrew.casks = [
"font-chomsky"
"font-cormorant-garamond"
"font-crimson-text"
"font-unifrakturmaguntia"
];
}