11 lines
172 B
Nix
11 lines
172 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
options.variables = lib.mkOption {
|
|
type = lib.types.attrs;
|
|
default = {};
|
|
};
|
|
config._module.args.variables = config.variables;
|
|
}
|