From 83829303b5cd7479a84685abc9f698942ea5d100 Mon Sep 17 00:00:00 2001 From: Jan-Bulthuis Date: Sat, 26 Apr 2025 00:50:43 +0200 Subject: [PATCH] Further bluetooth configuration --- machines/vm-audio.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/machines/vm-audio.nix b/machines/vm-audio.nix index 7ce9189..2657992 100644 --- a/machines/vm-audio.nix +++ b/machines/vm-audio.nix @@ -88,6 +88,11 @@ "mixer" ]; }; + users.groups.bluetooth = { + members = [ + "mixer" + ]; + }; # Xpra service systemd.user.services.xpra = { @@ -173,11 +178,13 @@ # Create bluetooth A2DP source hardware.bluetooth = { enable = true; + disabledPlugins = [ "hostname" ]; settings.General = { + Class = "0x040414"; Name = "Linox"; + JustWorksRepairing = "always"; DiscoverableTimeout = 0; AlwaysPairable = true; - }; };