From be2cbd81a78a3043735903e752a5321f34fe7d0f Mon Sep 17 00:00:00 2001 From: khaneliman Date: Wed, 19 Mar 2025 19:46:18 +0000 Subject: [PATCH] deploy: b5976017741653251258112f7e6ee5d8b9e3a832 --- options.xhtml | 52 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/options.xhtml b/options.xhtml index e00256191..b97abc716 100644 --- a/options.xhtml +++ b/options.xhtml @@ -67420,6 +67420,58 @@ package

Default: pkgs.easyeffects

+

Declared by:

+ + +
+ +<home-manager/modules/services/easyeffects.nix> + +
+ +
+ + services.easyeffects.extraPresets + + +
+
+

List of presets to import to easyeffects. +Presets are written to input and output folder in $XDG_CONFIG_HOME/easyeffects. +Top level block (input/output) determines the folder the file is written to.

See community presets at: +https://github.com/wwmm/easyeffects/wiki/Community-Presets

+ +

Type: +null or (attribute set of EasyEffects input or output JSON preset)

+ +

Default: +{ }

+ +

Example:

{
+  my-preset = {
+    input = {
+      blocklist = [
+
+      ];
+      "plugins_order" = [
+        "rnnoise#0"
+      ];
+      "rnnoise#0" = {
+        bypass = false;
+        "enable-vad" = false;
+        "input-gain" = 0.0;
+        "model-path" = "";
+        "output-gain" = 0.0;
+        release = 20.0;
+        "vad-thres" = 50.0;
+        wet = 0.0;
+      };
+    };
+  };
+};
+
+
+

Declared by: