17 lines
378 B
Nix
17 lines
378 B
Nix
{ lib, ... }:
|
|
{
|
|
findNixFiles = folder:
|
|
lib.mapAttrs'
|
|
(name: type:
|
|
if
|
|
type == "directory"
|
|
then
|
|
lib.nameValuePair name "${folder}/${name}"
|
|
else
|
|
lib.nameValuePair (lib.removeSuffix ".nix" name) "${folder}/${name}"
|
|
)
|
|
(builtins.readDir folder);
|
|
|
|
jsonschema = import ./jsonschema.nix { inherit lib; };
|
|
}
|