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