From 9039cc3f28e21d14bc4c9af8b2aac4cd7d8875fa Mon Sep 17 00:00:00 2001 From: "(cdep)illabout" Date: Sat, 15 Dec 2018 14:49:41 +0900 Subject: [PATCH] Add explanation of using the bluezFull package in nixos documentation. --- nixos/modules/services/hardware/bluetooth.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/hardware/bluetooth.nix b/nixos/modules/services/hardware/bluetooth.nix index d7ca8a431794..2a8dfe4a66c9 100644 --- a/nixos/modules/services/hardware/bluetooth.nix +++ b/nixos/modules/services/hardware/bluetooth.nix @@ -25,9 +25,14 @@ in { type = types.package; default = pkgs.bluez; defaultText = "pkgs.bluez"; - example = "pkgs.bluez.override { enableMidi = true; }"; + example = "pkgs.bluezFull"; description = '' Which BlueZ package to use. + + + Use the pkgs.bluezFull package to enable all + bluez plugins. + ''; };