blueman-applet: add note about required system service

This commit is contained in:
Nikita Uvarov 2017-10-11 13:05:47 +02:00
parent 3f430627df
commit 7e6f3364bc
No known key found for this signature in database
GPG key ID: F7A5FB3A7C10EF96

View file

@ -5,7 +5,15 @@ with lib;
{ {
options = { options = {
services.blueman-applet = { services.blueman-applet = {
enable = mkEnableOption "Blueman applet"; enable = mkEnableOption ''
Blueman applet.
Note, for the applet to work, 'blueman' package should also be installed system-wide
since it requires running 'blueman-mechanism' service activated via dbus.
You can add it to the dbus packages in system configuration:
services.dbus.packages = [ pkgs.blueman ];
'';
}; };
}; };