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