From c64d8da4904ae693d9c315e30a1e8124256789f3 Mon Sep 17 00:00:00 2001 From: Richie Cahill Date: Sun, 29 Dec 2024 23:26:46 -0500 Subject: [PATCH] testing ControllerMode = bredr https://unix.stackexchange.com/questions/736933/what-is-the-bluetooth-controllermode-in-etc-bluetooth-main-conf-what-is-bredr https://github.com/bluez/bluez/blob/master/src/main.conf https://bbs.archlinux.org/viewtopic.php?id=270465 --- .vscode/settings.json | 1 + systems/muninn/default.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index 8359b83..ae23e4e 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -26,6 +26,7 @@ "bitwarden", "blkdiscard", "breakpad", + "bredr", "btop", "cachix", "canmount", diff --git a/systems/muninn/default.nix b/systems/muninn/default.nix index 5ade601..c7e91a2 100644 --- a/systems/muninn/default.nix +++ b/systems/muninn/default.nix @@ -28,6 +28,7 @@ bluetooth = { enable = true; powerOnBoot = true; + settings.General.ControllerMode = "bredr"; }; firmware = [ pkgs.sof-firmware ]; };