Bluetooth: Difference between revisions

imported>Mdedetrich
m Grammer
imported>Sbock
m bluetooth extraConfig option is deprecated in favor of config, which requires a set to passed instead of a string.
Line 116: Line 116:
<syntaxhighlight lang="nix">{
<syntaxhighlight lang="nix">{
...
...
hardware.bluetooth.extraConfig = "
hardware.bluetooth.config = {
   [General]
   General = {
  Enable=Source,Sink,Media,Socket
    Enable = "Source,Sink,Media,Socket";
";
  };
};
...
...
}</syntaxhighlight>
}</syntaxhighlight>