Bluetooth: Difference between revisions

imported>HLandau
No edit summary
imported>Qfjp
Line 52: Line 52:


You can verify that PulseAudio has loaded the Bluetooth module by running <tt>pactl list | grep -i 'Name.*module.*blue'</tt>; Bluetooth modules should be present in the list.
You can verify that PulseAudio has loaded the Bluetooth module by running <tt>pactl list | grep -i 'Name.*module.*blue'</tt>; Bluetooth modules should be present in the list.
===Enabling A2DP Sink===
Modern headsets will generally try to connect using the A2DP profile. To enable this for your bluetooth connection, add the following to <tt>/etc/nixos/configuration.nix</tt>
<syntaxhighlight lang="nix">{
...
hardware.bluetooth.extraConfig = "
  [general]
  Enable=Source,Sink,Media,Socket
"
...
}</syntaxhighlight>


===Managing audio devices===
===Managing audio devices===