forked from pub-solar/os
13 lines
348 B
Nix
13 lines
348 B
Nix
{ lib }:
|
|
|
|
{ dir, _import ? base: import "${dir}/${base}.nix" }:
|
|
lib.mapFilterAttrs
|
|
(_: v: v != null)
|
|
(n: v:
|
|
if n != "default.nix" && lib.hasSuffix ".nix" n && v == "regular"
|
|
then
|
|
let name = lib.removeSuffix ".nix" n; in lib.nameValuePair (name) (_import name)
|
|
else
|
|
lib.nameValuePair ("") (null))
|
|
(lib.safeReadDir dir)
|