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;