This website requires JavaScript.
Explore
Help
Sign In
public
/
nixpkgs
Watch
1
Star
0
Fork
You've already forked nixpkgs
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
c79edb5eb0
nixpkgs
/
lib
/
tests
/
modules
/
freeform-attrsOf.nix
4 lines
87 B
Nix
Raw
Normal View
History
Unescape
Escape
lib/tests: Add tests for freeform modules
2020-03-22 12:55:54 -07:00
{
lib
,
.
.
.
}:
{
lib/modules: Add syntactic sugar for config._module.freeformType This introduces `freeformType` as a top-level module attribute, allowing definitions like { freeformType = ...; options = ...; config = ...; }
2020-08-10 08:25:46 -07:00
freeformType
=
with
lib
.
types
;
attrsOf
(
either
str
(
attrsOf
str
)
)
;
lib/tests: Add tests for freeform modules
2020-03-22 12:55:54 -07:00
}