Files
nix/utils/default.nix

8 lines
137 B
Nix

{ lib }:
{
dirNames =
path:
builtins.attrNames (lib.filterAttrs (name: type: type == "directory") (builtins.readDir path));
}