9 lines
132 B
Nix
9 lines
132 B
Nix
|
{ lib, ... }:
|
||
|
|
||
|
{
|
||
|
options.mine.settings = lib.mkOption {
|
||
|
type = lib.types.attrsOf lib.types.anything;
|
||
|
default = {};
|
||
|
};
|
||
|
}
|