···2525}
2626```
27272828+In any file where you want to use the angle-brackets syntax, add
2929+`__findFile` to the arguments attrset to bring it into that module's
3030+lexical scope.
3131+3232+```nix
3333+{ den, __findFile, ... }: {
3434+ ...
3535+}
3636+3737+```
3838+2839## Resolution Rules
29403041The `<name>` expression resolves through these paths in order:
···6374They are functionally identical to direct attribute access. The choice
6475is a matter of style.
65766666-<Aside type="caution">
6767-Angle brackets use Nix's `__findFile` mechanism, which is positional
6868-(depends on being in scope). They only work in modules where
6969-`__findFile` has been set as a module argument.
7070-</Aside>