blob: 1ec6f497c809cdc7d5cbad01520c33eb306c138d (
plain) (
tree)
|
|
let path = ../../overlays;
in with builtins;
map (n: import (path + ("/" + n))) (filter
(n:
match ".*\\.nix" n != null || pathExists (path + ("/" + n + "/default.nix")))
(attrNames (readDir path)))
|