nichts/modules/options/style/fonts.nix
2024-08-20 20:26:01 +02:00

16 lines
296 B
Nix

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