upstream modules: init

This commit is contained in:
tv 2021-01-26 20:20:05 +01:00
parent 6b68a4f5d8
commit 6a29e8bfcc
2 changed files with 11 additions and 0 deletions

View File

@ -55,6 +55,7 @@ let
./sync-containers.nix
./tinc.nix
./tinc_graphs.nix
./upstream
./urlwatch.nix
./repo-sync.nix
./xresources.nix

View File

@ -0,0 +1,10 @@
with import <stockholm/lib>;
{
imports =
map
(name: ./. + "/${name}")
(filter
(name: name != "default.nix" && !hasPrefix "." name)
(attrNames (readDir ./.)));
}