pub-solar-os/lib/lists.nix
2021-04-08 21:17:24 -06:00

9 lines
161 B
Nix

{ lib, dev, ... }:
{
pathsIn = dir:
let
fullPath = name: "${toString dir}/${name}";
in
map fullPath (lib.attrNames (dev.safeReadDir dir));
}