forked from pub-solar/os
eaff91c0f9
This reverts commit 930b3e96b4
.
9 lines
161 B
Nix
9 lines
161 B
Nix
{ lib, dev, ... }:
|
|
{
|
|
pathsIn = dir:
|
|
let
|
|
fullPath = name: "${toString dir}/${name}";
|
|
in
|
|
map fullPath (lib.attrNames (dev.safeReadDir dir));
|
|
}
|