about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
author(cdep)illabout <cdep.illabout@gmail.com>2018-12-15 14:49:41 +0900
committer(cdep)illabout <cdep.illabout@gmail.com>2018-12-15 14:49:41 +0900
commit9039cc3f28e21d14bc4c9af8b2aac4cd7d8875fa (patch)
tree37a1e2786c488c55ddae7b8c4f9cdca6c6adf615 /nixos
parent1cd8c81d50b92ac3c97d7e93d97b0bfd17811df5 (diff)
downloadnixlib-9039cc3f28e21d14bc4c9af8b2aac4cd7d8875fa.tar
nixlib-9039cc3f28e21d14bc4c9af8b2aac4cd7d8875fa.tar.gz
nixlib-9039cc3f28e21d14bc4c9af8b2aac4cd7d8875fa.tar.bz2
nixlib-9039cc3f28e21d14bc4c9af8b2aac4cd7d8875fa.tar.lz
nixlib-9039cc3f28e21d14bc4c9af8b2aac4cd7d8875fa.tar.xz
nixlib-9039cc3f28e21d14bc4c9af8b2aac4cd7d8875fa.tar.zst
nixlib-9039cc3f28e21d14bc4c9af8b2aac4cd7d8875fa.zip
Add explanation of using the bluezFull package in nixos documentation.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/hardware/bluetooth.nix7
1 files changed, 6 insertions, 1 deletions
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.
+
+          <note><para>
+            Use the <literal>pkgs.bluezFull</literal> package to enable all
+            bluez plugins.
+          </para></note>
         '';
       };