diff options
Diffstat (limited to 'nixos/services/pipewire.service.nix')
-rw-r--r-- | nixos/services/pipewire.service.nix | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/nixos/services/pipewire.service.nix b/nixos/services/pipewire.service.nix index 83548a4..0cf6a8a 100644 --- a/nixos/services/pipewire.service.nix +++ b/nixos/services/pipewire.service.nix @@ -1,37 +1,4 @@ { pkgs, ... }: -let - pw_rnnoise_config = { - "context.modules" = [ - { - "name" = "libpipewire-module-filter-chain"; - "args" = { - "node.description" = "Noise Canceling source"; - "media.name" = "Noise Canceling source"; - "filter.graph" = { - "nodes" = [ - { - "type" = "ladspa"; - "name" = "rnnoise"; - "plugin" = "${pkgs.rnnoise-plugin}/lib/ladspa/librnnoise_ladspa.so"; - "label" = "noise_suppressor_stereo"; - "control" = { "VAD Threshold (%)" = 50.0; }; - } - ]; - }; - "audio.position" = [ "FL" "FR" ]; - "capture.props" = { - "node.name" = "effect_input.rnnoise"; - "node.passive" = true; - }; - "playback.props" = { - "node.name" = "effect_output.rnnoise"; - "media.class" = "Audio/Source"; - }; - }; - } - ]; - }; -in { services.pipewire = { enable = true; |