blob: 1ec6f497c809cdc7d5cbad01520c33eb306c138d (
plain) (
blame)
1
2
3
4
5
6
|
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)))
|