42cf8130d7
This introduces `freeformType` as a top-level module attribute, allowing definitions like { freeformType = ...; options = ...; config = ...; }
4 lines
87 B
Nix
4 lines
87 B
Nix
{ lib, ... }: {
|
|
freeformType = with lib.types; attrsOf (either str (attrsOf str));
|
|
}
|