Bluetooth

From NixOS Wiki
Revision as of 17:13, 30 June 2017 by imported>Fadenb (Created page with "== Enabling Bluetooth in NixOS == Enabling Bluetooth is as simple as putting this in your configuration.nix: <pre> hardware.bluetooth.enable = true; </pre> == Bluez 4 == T...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Enabling Bluetooth in NixOS

Enabling Bluetooth is as simple as putting this in your configuration.nix:

hardware.bluetooth.enable = true;

Bluez 4

This is the default for now (as of August 2013), as KDE 4.10 and Pulseaudio 4.0 do not yet support Bluez 5.

Bluez 5

To use Bluez 5, you need something like this in your Nixpkgs config (in your ~/.nixpkgs/config.nix):

pkgs : {
  packageOverrides = pkgs : {
    bluez = pkgs.bluez5;
  }
}