CASCADE/common/default.nix

12 lines
347 B
Nix
Raw Normal View History

2022-09-24 03:24:58 +00:00
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; }