From 33dffb7f05a9c8d6a932cbee9adc8a5e7fd2aa5b Mon Sep 17 00:00:00 2001 From: stitchy Date: Thu, 27 Nov 2025 22:07:10 -0800 Subject: [PATCH] feat: dynamic audio sample rate switching I have 96khz music that I would like to stream without resampling :3 --- users/stitchynyan/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/users/stitchynyan/default.nix b/users/stitchynyan/default.nix index 140015e..969a21c 100644 --- a/users/stitchynyan/default.nix +++ b/users/stitchynyan/default.nix @@ -48,6 +48,7 @@ alsa.enable = true; enable = true; pulse.enable = true; + extraConfig.pipewire.noresample = { "context.properties" = { "default.clock.allowed-rates" = [ 44100 48000 96000 192000 ]; }; }; }; printing.enable = true; usbmuxd.enable = true;