nixos/k3s: fix undefined variable error

This commit is contained in:
Robert Rose
2025-08-01 22:10:04 +02:00
parent 65a740fadf
commit 77ff2272cd
@@ -40,7 +40,7 @@ let
with builtins;
fromJSON (
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
''
)