3
0
Fork 0
forked from mirrors/nixpkgs

Add explanation of using the bluezFull package in nixos documentation.

This commit is contained in:
(cdep)illabout 2018-12-15 14:49:41 +09:00
parent 1cd8c81d50
commit 9039cc3f28
No known key found for this signature in database
GPG key ID: 462E0C03D11422F4

View file

@ -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.
<note><para>
Use the <literal>pkgs.bluezFull</literal> package to enable all
bluez plugins.
</para></note>
'';
};