13 lines
228 B
Nix
13 lines
228 B
Nix
{ pkgs, ... }:
|
|
{
|
|
fonts.packages = with pkgs; [
|
|
jetbrains-mono
|
|
maple-mono.truetype
|
|
];
|
|
homebrew.casks = [
|
|
"font-chomsky"
|
|
"font-cormorant-garamond"
|
|
"font-crimson-text"
|
|
"font-unifrakturmaguntia"
|
|
];
|
|
}
|