Unverified Commit 1753e8b6 authored by Martin Weinelt's avatar Martin Weinelt
Browse files

nixos/wyoming/piper: fix cudaSupport reference

This needs to reference the config attribute set from the package set.

Fixes: #444597
parent 623f26ac
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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.
                '';