# configures class-automatic module auto imports for hosts/users/homes. # See documentation at modules/aspects/provides/import-tree.nix { # deadnix: skip __findFile ? __findFile, ... }: { # alice imports non-dendritic modules from _non_dendritic/alice/_/*.nix den.aspects.alice.includes = [ ( ./_non_dendritic/alice) ]; # See the documentation at batteries/import-tree.nix den.default.includes = [ ( ./_non_dendritic/hosts) ( ./_non_dendritic/users) ( ./_non_dendritic/homes) ]; # tests perSystem = { checkCond, rockhopper, ... }: { checks.import-tree = checkCond "auto-imported from rockhopper/_nixos" ( rockhopper.config.auto-imported ); }; }