mirror of
https://github.com/oxalica/nil.git
synced 2024-11-22 11:22:46 +03:00
nix-interop: fix option completion of types.attrsOf (types.submodule {})
a.k.a. fix a small typo. Because the type-name `attrsOf` was never matched, e.g. `systemd.services` always had type `any`.
This commit is contained in:
parent
97abe7d3d4
commit
e99c89177a
@ -104,8 +104,8 @@ let
|
|||||||
|
|
||||||
listOf = { name = "list"; inherit elem; };
|
listOf = { name = "list"; inherit elem; };
|
||||||
|
|
||||||
attrOf = { name = "attrset"; rest = elem; };
|
attrsOf = { name = "attrset"; rest = elem; };
|
||||||
lazyAttrOf = { name = "attrset"; rest = elem; };
|
lazyAttrsOf = { name = "attrset"; rest = elem; };
|
||||||
|
|
||||||
uniq = elem;
|
uniq = elem;
|
||||||
unique = elem;
|
unique = elem;
|
||||||
|
Loading…
Reference in New Issue
Block a user