fonts: refactor

This commit is contained in:
Charlie Root 2025-03-26 19:16:02 +01:00
commit 753fb58c91
Signed by: faukah
SSH key fingerprint: SHA256:Uj2AXqvtdCA4hn5Hq0ZonhIAyUqI1q4w2sMG3Z1TH7E
2 changed files with 12 additions and 18 deletions

View file

@ -1,12 +0,0 @@
{lib, ...}: let
inherit (lib) mkOption;
inherit (lib.types) package listOf;
in {
options.modules.system.fonts = {
# This defines extra fonts to be installed on the system.
extraFonts = mkOption {
type = listOf package;
default = [];
};
};
}