nt/nib/std/default.nix

13 lines
399 B
Nix
Raw Normal View History

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