edit the config structure to use modules rather than sets

This commit is contained in:
Michael Flossmann 2024-08-22 09:53:36 +02:00 committed by prunebutt
parent 515bf06620
commit 2b91fb060a
4 changed files with 32 additions and 5 deletions

View file

@ -9,5 +9,6 @@ let
)
(builtins.readDir ./.)
);
in
lib.mkMerge (map (file: import ./${file}) definitions)
in {
imports = map (file: import ./${file}) definitions;
}