Merge pull request #297806 from andrevmatos/nixos/wireplumber/fix_systemwide_bluetooth

nixos/wireplumber: fix systemwide bluetooth integration
This commit is contained in:
K900 2024-03-22 09:47:46 +03:00 committed by GitHub
commit 176ee51929
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -67,10 +67,12 @@ in
'';
systemwideConfigPkg = pkgs.writeTextDir "share/wireplumber/wireplumber.conf.d/90-nixos-systemwide.conf" ''
# When running system-wide, we don't have logind to call ReserveDevice
# When running system-wide, we don't have logind to call ReserveDevice,
# And bluetooth logind integration needs to be disabled
wireplumber.profiles = {
main = {
support.reserve-device = disabled
monitor.bluez.seat-monitoring = disabled
}
}
'';