Unverified Commit 5e2119f0 authored by Glib Shpychka's avatar Glib Shpychka Committed by GitHub
Browse files

nixos/wyoming-piper: Remove range validation for numerical options (#384315)

Remove range validation for numerical options
parent 2cc9bbf8
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -70,7 +70,7 @@ in
              };

              noiseScale = mkOption {
                type = numbers.between 0.0 1.0;
                type = float;
                default = 0.667;
                description = ''
                  Generator noise value.
@@ -79,7 +79,7 @@ in
              };

              noiseWidth = mkOption {
                type = numbers.between 0.0 1.0;
                type = float;
                default = 0.333;
                description = ''
                  Phoneme width noise value.
@@ -88,7 +88,7 @@ in
              };

              lengthScale = mkOption {
                type = numbers.between 0.0 1.0;
                type = float;
                default = 1.0;
                description = ''
                  Phoneme length value.