From 76f0aeb07a565cd329f59ba0b12121a5ff33d2f5 Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Tue, 2 Dec 2025 16:52:06 -0600 Subject: [PATCH] low latency module messes up btd600 --- modules/services/sound.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/modules/services/sound.nix b/modules/services/sound.nix index 8ad24d4..a562251 100644 --- a/modules/services/sound.nix +++ b/modules/services/sound.nix @@ -5,7 +5,7 @@ ... }: { - imports = [ inputs.nix-gaming.nixosModules.pipewireLowLatency ]; + # imports = [ inputs.nix-gaming.nixosModules.pipewireLowLatency ]; options.my.services.sound.enable = lib.mkEnableOption "audio system and PipeWire"; config = lib.mkIf config.my.services.sound.enable { services.pulseaudio.enable = false; @@ -16,11 +16,11 @@ alsa.support32Bit = true; pulse.enable = true; wireplumber.enable = true; - lowLatency = { - enable = true; - quantum = 64; - rate = 48000; - }; + # lowLatency = { + # enable = true; + # quantum = 64; + # rate = 48000; + # }; }; }; }