From 28bdb78992c0ba5e6faa96f54a3d1e1d4dfb8e18 Mon Sep 17 00:00:00 2001 From: ChaotiCryptidz Date: Wed, 9 Mar 2022 20:28:19 +0000 Subject: [PATCH] fontyz --- profiles/base-darwin/fonts.nix | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 profiles/base-darwin/fonts.nix diff --git a/profiles/base-darwin/fonts.nix b/profiles/base-darwin/fonts.nix new file mode 100644 index 0000000..bb484ba --- /dev/null +++ b/profiles/base-darwin/fonts.nix @@ -0,0 +1,6 @@ +{ pkgs, ... }: { + fonts = { + enableFontDir = true; + fonts = with pkgs; [ comic-sans comic-code ]; + }; +}