2024-08-23 08:27:17 +02:00
|
|
|
{lib, ...}: let
|
2024-08-16 10:10:25 +02:00
|
|
|
inherit (lib) mkOption;
|
2024-08-23 08:27:17 +02:00
|
|
|
inherit (lib.types) package listOf;
|
2024-08-16 10:10:25 +02:00
|
|
|
in {
|
|
|
|
options.modules.system.fonts = {
|
|
|
|
# This defines extra fonts to be installed on the system.
|
|
|
|
extraFonts = mkOption {
|
2024-08-20 20:26:01 +02:00
|
|
|
type = listOf package;
|
|
|
|
default = [];
|
2024-08-16 10:10:25 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|