summaryrefslogtreecommitdiff
path: root/lib/overlays.nix
blob: 21ba247115cf8819f6cd7940209a793365303ea1 (plain) (blame)
1
2
3
4
5
6
7
8
9
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)
  )
)