fonts.nix: remove fonts from options
This commit is contained in:
parent
1357a10ad6
commit
eb64f25717
4 changed files with 40 additions and 2 deletions
15
modules/options/style/fonts.nix
Normal file
15
modules/options/style/fonts.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
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 = nullOr (listOf package);
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue