9 lines
143 B
Nix
9 lines
143 B
Nix
with import ./lib;
|
|
{
|
|
imports =
|
|
map
|
|
(name: ./. + "/${name}")
|
|
(attrNames
|
|
(filterAttrs isNixDirEntry (readDir ./.)));
|
|
}
|