MyNixOS website logo
option

services.easyeffects.extraPresets

List of presets to import to easyeffects. Presets are written to input and output folders in $XDG_DATA_HOME/easyeffects. Each top-level block (input or output) is written to its corresponding folder.

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

Declarations
Type
null or (attribute set of attribute set of (JSON value))
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;
      };
    };
    output = {
      blocklist = [ ];
      "plugins_order" = [ "limiter#0" ];
      "limiter#0" = {
        bypass = false;
        threshold = -1.0;
      };
    };
  };
};