Loading nixos/modules/services/audio/tts.nix +4 −4 Original line number Diff line number Diff line Loading @@ -126,7 +126,7 @@ in "${pkgs.tts}/bin/tts-server --port ${toString options.port} " + optionalString (options.model != null) "--model_name ${options.model} " + optionalString (options.useCuda) "--use_cuda " + (concatMapStringsSep " " escapeShellArgs options.extraArgs); + (escapeShellArgs options.extraArgs); CapabilityBoundingSet = ""; DeviceAllow = if options.useCuda then Loading Loading
nixos/modules/services/audio/tts.nix +4 −4 Original line number Diff line number Diff line Loading @@ -126,7 +126,7 @@ in "${pkgs.tts}/bin/tts-server --port ${toString options.port} " + optionalString (options.model != null) "--model_name ${options.model} " + optionalString (options.useCuda) "--use_cuda " + (concatMapStringsSep " " escapeShellArgs options.extraArgs); + (escapeShellArgs options.extraArgs); CapabilityBoundingSet = ""; DeviceAllow = if options.useCuda then Loading