infrastructure/lib/default.nix
Fabian Hauser fc4d569886
Some checks failed
CI / build (push) Failing after 45s
fixup! Add tests documentation to docs page
2025-03-24 21:50:44 +02:00

22 lines
599 B
Nix

{ pkgs, ... }:
let
inherit (pkgs.lib)
attrNames
filterAttrs
filter
pathExists
path
;
isFolderWithFile =
fileName: basePath: folderName:
(pathExists (path.append basePath "./${folderName}/${fileName}.nix"));
getSubDirs = base: attrNames (filterAttrs (n: t: t == "directory") (builtins.readDir base));
foldersWithNix = base: filter (isFolderWithFile "default.nix") (getSubDirs base);
in
{
inherit isFolderWithFile foldersWithNix;
loadSubmodulesFrom =
basePath: map (folder: path.append basePath "./${folder}/default.nix") (foldersWithNix basePath);
}