12 lines
162 B
Nix
12 lines
162 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
options.nixfiles.vars = lib.mkOption {
|
|
description = "Global variables";
|
|
type = lib.types.attrs;
|
|
default = {};
|
|
};
|
|
}
|