12 lines
347 B
Nix
12 lines
347 B
Nix
let _ = builtins.trace "${toString ./.}/default.nix"; in
|
|
{...}:
|
|
with builtins;
|
|
with import (toString ../functions);
|
|
|
|
let folder = import-folder {path = "${toString ./.}"; filenameMatch = ".*[.]nix"; filenameBadMatch = ".*_.*";};
|
|
goodNames = attrNames folder;
|
|
goodPaths = map (n: "${toString ./.}/${n}.nix") goodNames;
|
|
in
|
|
|
|
{ imports = goodPaths; }
|