mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
42cf8130d7
This introduces `freeformType` as a top-level module attribute, allowing definitions like { freeformType = ...; options = ...; config = ...; }
4 lines
95 B
Nix
4 lines
95 B
Nix
{ lib, ... }: {
|
|
freeformType = with lib.types; lazyAttrsOf (either str (lazyAttrsOf str));
|
|
}
|