blueman: update advice for removing error message

The old method for hiding the error no longer works in NixOS 19.09,
and ends up breaking blueman-applet entirely. Enable the NixOS service
instead.

Pull request #950
This commit is contained in:
Cabia Rangris 2019-12-16 16:14:05 +03:00 committed by Robert Helgesson
parent a12a8f7977
commit a5d3d6f665
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89

View file

@ -8,11 +8,11 @@ with lib;
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:
Note, for the applet to work, 'blueman' service should be enabled system-wide
since it requires running 'blueman-mechanism' service activated.
You can enable it in system configuration:
services.dbus.packages = [ pkgs.blueman ];
services.blueman.enable = true;
'';
};
};