9 lines
No EOL
191 B
Nix
9 lines
No EOL
191 B
Nix
{ cfg, lib, ... }:
|
|
let
|
|
manifests = [
|
|
./deployments
|
|
./services
|
|
];
|
|
imported = map ( n: import ${n} { inherit cfg lib } ) manifests;
|
|
in
|
|
lib.foldl' lib.recursiveUpdate {} imported |