22 lines
397 B
Nix
22 lines
397 B
Nix
{ lib, ... }:
|
|
|
|
let
|
|
inherit (lib) mkOption;
|
|
inherit (lib.types) attrsOf listOf submodule str;
|
|
in
|
|
|
|
{
|
|
options.incandescence = {
|
|
providers = mkOption {
|
|
type = attrsOf (submodule ({ name, ... }: {
|
|
options = {
|
|
objects = mkOption {
|
|
type = attrsOf (listOf str);
|
|
default = { };
|
|
};
|
|
};
|
|
}));
|
|
default = { };
|
|
};
|
|
};
|
|
}
|