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