7 lines
130 B
Nix
7 lines
130 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
imports = with builtins;
|
||
|
map (fn: ./${fn})
|
||
|
(filter (fn: fn != "default.nix") (attrNames (readDir ./.)));
|
||
|
}
|