Skip to content

Commit

Permalink
Remove range validation for numerical options
Browse files Browse the repository at this point in the history
  • Loading branch information
gshpychka authored Feb 22, 2025
1 parent 73cf49b commit 005a822
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nixos/modules/services/home-automation/wyoming/piper.nix
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ in
};

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

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

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

0 comments on commit 005a822

Please sign in to comment.