8 lines
137 B
Nix
8 lines
137 B
Nix
{ lib }:
|
|
|
|
{
|
|
dirNames =
|
|
path:
|
|
builtins.attrNames (lib.filterAttrs (name: type: type == "directory") (builtins.readDir path));
|
|
}
|