From 33da03e5380ad11d5454ee65a985dffaeed461b8 Mon Sep 17 00:00:00 2001 From: xenia Date: Thu, 27 Jun 2024 11:23:57 +0200 Subject: [PATCH] Switch to pipewire --- nixos/graphical.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/nixos/graphical.nix b/nixos/graphical.nix index eca8bc25..46217a68 100644 --- a/nixos/graphical.nix +++ b/nixos/graphical.nix @@ -27,9 +27,14 @@ console.useXkbConfig = true; - # Enable sound. - sound.enable = true; - hardware.pulseaudio.enable = true; + sound.enable = false; # let pipewire handle sound + services.pipewire = { + enable = true; + alsa.enable = true; + pulse.enable = true; + jack.enable = true; + wireplumber.enable = true; + }; hardware.bluetooth.enable = true;