nixos/k3s: fix undefined variable error

This commit is contained in:
Robert Rose 2025-07-16 07:08:04 +02:00
parent 65a740fadf
commit 77ff2272cd

View File

@ -40,7 +40,7 @@ let
with builtins; with builtins;
fromJSON ( fromJSON (
readFile ( readFile (
pkgs.runCommand "${path}-converted.json" { nativeBuildInputs = [ yq-go ]; } '' pkgs.runCommand "${path}-converted.json" { nativeBuildInputs = [ pkgs.yq-go ]; } ''
yq --no-colors --output-format json ${path} > $out yq --no-colors --output-format json ${path} > $out
'' ''
) )