nixos/wyoming/piper: fix cudaSupport reference (#444661)

This commit is contained in:
Martin Weinelt
2025-09-20 15:00:14 +00:00
committed by GitHub

View File

@@ -103,8 +103,8 @@ in
useCUDA = mkOption {
type = bool;
default = config.cudaSupport;
defaultText = literalExpression "config.cudaSupport";
default = pkgs.config.cudaSupport;
defaultText = literalExpression "pkgs.config.cudaSupport";
description = ''
Whether to accelerate the underlying onnxruntime library with CUDA.
'';