summaryrefslogtreecommitdiffstats
path: root/krebs/3modules/upstream/default.nix
blob: ce7bd16440ee108cdb42713d5b63edd2704ea83b (plain)
1
2
3
4
5
6
7
8
9
10
with import <stockholm/lib>;

{
  imports =
    map
      (name: ./. + "/${name}")
      (filter
        (name: name != "default.nix" && !hasPrefix "." name)
        (attrNames (readDir ./.)));
}