From 3fe0621abdcbc8844cb292009e39ee5b7cc01573 Mon Sep 17 00:00:00 2001 From: Chan Wen Xu Date: Fri, 3 Dec 2021 13:05:15 +0800 Subject: [PATCH] config: Switch to pipewire An attempt at solving the audio issues I have, proven unfruitful but it is a good change regardless. --- config/common.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/config/common.nix b/config/common.nix index a877eb7..697c8e0 100644 --- a/config/common.nix +++ b/config/common.nix @@ -36,7 +36,15 @@ ]; sound.enable = true; - hardware.pulseaudio.enable = true; + hardware.pulseaudio.enable = lib.mkForce false; + services.pipewire = { + enable = true; + alsa.enable = true; + jack.enable = true; + pulse.enable = true; + + alsa.support32Bit = true; + }; time.timeZone = "Asia/Kuala_Lumpur";