Bluetooth: Difference between revisions

imported>Artturin
remove from the installation category and add to the audio category
imported>ThibautMarty
Bluetooth support is enabled by default in pulseaudio (e41f3d9ef3f2), including in last (20.03) and current release (20.09)
Line 42: Line 42:
<syntaxhighlight lang="nix">{
<syntaxhighlight lang="nix">{
   ...
   ...
   hardware.pulseaudio = {
   hardware.pulseaudio.enable = true;
    enable = true;
 
    # NixOS allows either a lightweight build (default) or full build of PulseAudio to be installed.
    # Only the full build has Bluetooth support, so it must be selected here.
    package = pkgs.pulseaudioFull;
  };
 
   hardware.bluetooth.enable = true;
   hardware.bluetooth.enable = true;
   ...
   ...