nt/nib/types/default.nix

17 lines
443 B
Nix
Raw Normal View History

{...}: let
2025-12-13 22:00:34 +10:00
attrs = import ./attrs.nix {inherit lists;};
2025-12-14 11:59:29 +10:00
fault = import ./fault.nix {};
2025-12-13 22:00:34 +10:00
lists = import ./lists.nix {};
2025-12-14 10:20:16 +10:00
result = import ./result.nix {inherit lists;};
2025-12-13 22:00:34 +10:00
in
attrs.mergeAttrsList [
2025-12-13 22:00:34 +10:00
# submodule is included directly to this module (ie self.myFunc)
attrs
fault
lists
result
2025-12-13 22:00:34 +10:00
# submodule content is accessible first by submodule name
# then by the name of the content (ie self.submodule.myFunc)
]