From f27a1005764f401cf861cdac0c31085e344fe651 Mon Sep 17 00:00:00 2001 From: Tyler Beckman Date: Fri, 29 Nov 2024 15:39:02 -0700 Subject: [PATCH] Add bluetooth A2DP support --- hosts/laptop/modules/bluetooth.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/hosts/laptop/modules/bluetooth.nix b/hosts/laptop/modules/bluetooth.nix index 1c756c4..9ec2063 100644 --- a/hosts/laptop/modules/bluetooth.nix +++ b/hosts/laptop/modules/bluetooth.nix @@ -1,6 +1,14 @@ { ... }: { # Enable bluetooth - hardware.bluetooth.enable = true; - hardware.bluetooth.powerOnBoot = true; + hardware.bluetooth = { + enable = true; + powerOnBoot = true; + + settings = { + General = { + Enable = "Source,Sink,Media,Socket"; + }; + }; + }; } \ No newline at end of file