9 lines
157 B
Nix
9 lines
157 B
Nix
|
{ lib, ... }:
|
||
|
{
|
||
|
pathsIn = dir:
|
||
|
let
|
||
|
fullPath = name: "${toString dir}/${name}";
|
||
|
in
|
||
|
map fullPath (lib.attrNames (builtins.readDir dir));
|
||
|
}
|