kube-parts/lib/generators/talos.nix
s0me1newithhand7s 0078a09395 initial commit
Signed-off-by: s0me1newithhand7s <git+me@hand7s.org>
2026-03-29 04:20:33 +03:00

8 lines
255 B
Nix

{lib, ...}: pkgs: content:
pkgs.runCommand "talos-manifests" {} ''
mkdir -p $out/talos
${lib.concatStringsSep "\n" (lib.mapAttrsToList (name: attrs: ''
cp ${(pkgs.formats.yaml {}).generate name attrs} $out/talos/${name}
'')
content)}
''