nt/nib/parse/default.nix
2025-12-14 10:20:33 +10:00

14 lines
318 B
Nix

{
attrs,
result,
...
} @ args: let
struct = import ./struct.nix args;
in
attrs.mergeAttrsList [
# 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)
]