1
1
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:
Maximilian Bosch 2023-08-29 17:44:25 +02:00
parent 97abe7d3d4
commit e99c89177a
No known key found for this signature in database
GPG Key ID: 9A6EEA275CA5BE0A

View File

@ -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;