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 { useCUDA = mkOption {
type = bool; type = bool;
default = config.cudaSupport; default = pkgs.config.cudaSupport;
defaultText = literalExpression "config.cudaSupport"; defaultText = literalExpression "pkgs.config.cudaSupport";
description = '' description = ''
Whether to accelerate the underlying onnxruntime library with CUDA. Whether to accelerate the underlying onnxruntime library with CUDA.
''; '';