nixfiles/profiles/base-darwin/fonts.nix

7 lines
108 B
Nix
Raw Normal View History

{pkgs, ...}: {
2022-03-09 20:28:19 +00:00
fonts = {
enableFontDir = true;
fonts = with pkgs; [comic-sans comic-code];
2022-03-09 20:28:19 +00:00
};
}