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