lib/options: Add hint for debugging infinite recursion in docs

This commit is contained in:
Robert Hensing 2022-06-27 17:21:34 +02:00
parent 49237015d6
commit 4a8bc4fd07

View file

@ -242,6 +242,8 @@ rec {
in if ss != {} then optionAttrSetToDocList' opt.loc ss else [];
subOptionsVisible = docOption.visible && opt.visible or null != "shallow";
in
# To find infinite recursion in NixOS option docs:
# builtins.trace opt.loc
[ docOption ] ++ optionals subOptionsVisible subOptions) (collect isOption options);