From 36c4fc0fd6433b833e08f49bd32d2d45e591efd2 Mon Sep 17 00:00:00 2001 From: technofab Date: Thu, 27 Feb 2025 11:19:50 +0100 Subject: [PATCH] fix(module): prevent parameter expansion when generating pipeline config --- lib/flakeModule.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/flakeModule.nix b/lib/flakeModule.nix index 72daa78..7c34aa7 100644 --- a/lib/flakeModule.nix +++ b/lib/flakeModule.nix @@ -166,7 +166,7 @@ # respectively) toYaml = name: value: pkgs.runCommand name {} '' - cat <> $out + cat <<'EOT' > $out ${builtins.toJSON value} EOT '';