2022-11-22 19:15:44 +00:00
|
|
|
{ config, lib, ... }: {
|
2022-11-23 16:49:57 +00:00
|
|
|
config =
|
|
|
|
lib.mkMerge
|
|
|
|
(lib.mapAttrsToList
|
|
|
|
(name: _type: let
|
|
|
|
path = ./. + "/${name}";
|
|
|
|
in {
|
|
|
|
krebs = import path { inherit config; };
|
|
|
|
})
|
|
|
|
(lib.filterAttrs
|
|
|
|
(_name: type: type == "directory")
|
|
|
|
(builtins.readDir ./.)));
|
2022-11-22 19:15:44 +00:00
|
|
|
}
|