Example Dendritic Nix setup implemented without flakes nor flake-parts. dendrix.oeiuwq.com/Dendritic.html#no-dependencies
nix unflake dendritic
at main 8 lines 242 B view raw
1{ lib, ... }: 2{ 3 options.modules = lib.mkOption { 4 description = "<class>.<aspect> modules. akin to flake-parts' flake.modules"; 5 default = { }; 6 type = lib.types.lazyAttrsOf (lib.types.lazyAttrsOf lib.types.deferredModule); 7 }; 8}