9 lines
149 B
Nix
9 lines
149 B
Nix
{ lib, ... }:
|
|
with lib;
|
|
{
|
|
options.vars = mkOption {
|
|
description = "Miscellaneous variables.";
|
|
type = types.attrs;
|
|
default = {};
|
|
};
|
|
}
|