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