8 lines
160 B
Nix
8 lines
160 B
Nix
|
{lib, ...}: {
|
||
|
options.flake.colmena = lib.mkOption {
|
||
|
# type = lib.types.attrsOf lib.types.unspecified;
|
||
|
type = lib.types.raw;
|
||
|
default = {};
|
||
|
};
|
||
|
}
|