10 lines
304 B
Nix
10 lines
304 B
Nix
{nib, ...} @ args: let
|
|
struct = import ./struct.nix args;
|
|
in
|
|
nib.types.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)
|
|
]
|