Files
clan-core/lib/default.nix
2023-08-09 16:05:33 +02:00

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; };
}