nt/nib/parse/default.nix

15 lines
318 B
Nix
Raw Normal View History

2025-12-13 22:01:54 +10:00
{
attrs,
result,
...
2025-12-14 10:20:33 +10:00
} @ args: let
struct = import ./struct.nix args;
2025-12-13 22:01:54 +10:00
in
attrs.mergeAttrsList [
2025-12-13 22:01:54 +10:00
# submodule is included directly to this module (ie self.myFunc)
struct
# submodule content is accessible first by submodule name
# then by the name of the content (ie self.submodule.myFunc)
]