From 7da1e6178d1b43512a683f297974b8dec34f78a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Tue, 5 Dec 2023 19:06:52 +0100 Subject: [PATCH] fix: bluetooth sound? --- configs/bluetooth.nix | 6 ++++-- configs/sound.nix | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/configs/bluetooth.nix b/configs/bluetooth.nix index 35182ef..54ddf41 100644 --- a/configs/bluetooth.nix +++ b/configs/bluetooth.nix @@ -5,8 +5,10 @@ }: { hardware.bluetooth = { enable = true; - settings.General.Enable = - lib.concatStringsSep "," ["Source" "Sink" "Media" "Socket"]; + package = pkgs.bluezFull; + settings.general = { + enable = "Source,Sink,Media,Socket"; + }; }; services.blueman.enable = true; diff --git a/configs/sound.nix b/configs/sound.nix index a2770dd..22faabe 100644 --- a/configs/sound.nix +++ b/configs/sound.nix @@ -6,7 +6,6 @@ services.pipewire = { enable = true; - systemWide = false; alsa = { enable = true; support32Bit = true; @@ -15,6 +14,8 @@ jack.enable = true; }; + systemd.user.services.pipewire-pulse.path = [pkgs.pulseaudio]; + hardware.pulseaudio = { enable = false; package = pkgs.pulseaudioFull;