blob: 985e6e93da691504013c3e4796e83bf16e280d88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{ lib, ... }:
let
all = lib.filterAttrs
( n: _: n != "default.nix" && ! lib.hasPrefix "." n )
(builtins.readDir ./.);
in {
imports = [ <nixsap> ] ++ map (p: ./. + "/${p}") ( builtins.attrNames all );
}
|