summaryrefslogtreecommitdiff
path: root/archetypes/collections/fonts.nix
blob: 136e31b572918bf1b417ef5dfd8153f43f1c0625 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ pkgs, lib, config, ... }: let
	cfg = config._archetypes.collections.fonts;
in {
	options._archetypes.collections.fonts = {
		enable = lib.mkEnableOption "enables fonts";
	};

	config = lib.mkIf cfg.enable {
		fonts.packages = with pkgs; [
			commit-mono
			inter
			nerd-fonts.jetbrains-mono
			tamzen
		];
	};
}