Nix-Config/modules/k3s/manifests.nix
2026-05-17 16:06:46 -05:00

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