summaryrefslogtreecommitdiff
path: root/modules/hardware/bluetooth.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-09-03 01:52:03 -0700
committerFuwn <[email protected]>2024-09-03 01:52:03 -0700
commitc6deea451af1af2fdf4aee7f1ed74209f312a9b3 (patch)
treed725ce5a39939b1379f2a4141cd0ab54c1ef16cc /modules/hardware/bluetooth.nix
parenthome (diff)
downloadnixos-config-c6deea451af1af2fdf4aee7f1ed74209f312a9b3.tar.xz
nixos-config-c6deea451af1af2fdf4aee7f1ed74209f312a9b3.zip
modules
Diffstat (limited to 'modules/hardware/bluetooth.nix')
-rw-r--r--modules/hardware/bluetooth.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/hardware/bluetooth.nix b/modules/hardware/bluetooth.nix
index 1b6e38b..ede4f77 100644
--- a/modules/hardware/bluetooth.nix
+++ b/modules/hardware/bluetooth.nix
@@ -1,6 +1,17 @@
+{ pkgs, ... }:
{
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
+ package = pkgs.bluez5-experimental;
+ disabledPlugins = [ "sap" ];
+
+ settings = {
+ General = {
+ JustWorksRepairing = "always";
+ MultiProfile = "multiple";
+ Experimental = true;
+ };
+ };
};
}