citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

commit 057403a6cc49f34b0efc421d947ce81bc220fe95
parent f27afb4cade72dd7868611ee3b47c56c6656f29f
Author: William Casarin <jb55@jb55.com>
Date:   Wed, 28 Oct 2020 15:09:27 -0700

pulse: fix downpitch issues

Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
Mnix-config/hardware/desktop/default.nix | 13++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/nix-config/hardware/desktop/default.nix b/nix-config/hardware/desktop/default.nix @@ -99,13 +99,16 @@ in options = kindle-opts; }; + + hardware.pulseaudio.enable = true; + hardware.pulseaudio.support32Bit = true; + hardware.pulseaudio.package = if extra.is-minimal then pkgs.pulseaudio else pkgs.pulseaudioFull; + hardware.pulseaudio.daemon.config = { + default-sample-rate = "48000"; + }; + hardware = { bluetooth.enable = true; - pulseaudio = { - package = if extra.is-minimal then pkgs.pulseaudio else pkgs.pulseaudioFull; - enable = true; - support32Bit = true; - }; opengl.driSupport32Bit = true; opengl.driSupport = true; };