From f819e30b03dffcf9e74af4b8552e4a8ab8f54c58 Mon Sep 17 00:00:00 2001 From: Jon Santmyer Date: Fri, 29 Sep 2023 14:22:24 -0400 Subject: major reorganizing to seperate modules --- modules/hardware/bluetooth.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 modules/hardware/bluetooth.nix (limited to 'modules/hardware') diff --git a/modules/hardware/bluetooth.nix b/modules/hardware/bluetooth.nix new file mode 100644 index 0000000..1465d68 --- /dev/null +++ b/modules/hardware/bluetooth.nix @@ -0,0 +1,16 @@ +{ config, lib, pkgs, ... }: +{ + hardware.bluetooth.enable = true; + services.blueman.enable = true; + + environment.etc = { + "wireplumber/bluetooth.lua.d/51-bluez-config.lua".text = '' +bluez_monitor.properties = { + ["bluez5.enable-sbc-xq"] = true, + ["bluez5.enable-msbc"] = true, + ["bluez5.enable-hw-volume"] = true, + ["bluez5.headset-roles"] = "[ hsp_hs hsp_ag hfp_hf hfp_ag ]" +} + ''; + }; +} -- cgit v1.2.1