From a5d3d6f665060e87af799019b0cdda008b1f086e Mon Sep 17 00:00:00 2001 From: Cabia Rangris Date: Mon, 16 Dec 2019 16:14:05 +0300 Subject: [PATCH] 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 --- modules/services/blueman-applet.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/services/blueman-applet.nix b/modules/services/blueman-applet.nix index 186dc7454..f5d2f4d68 100644 --- a/modules/services/blueman-applet.nix +++ b/modules/services/blueman-applet.nix @@ -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; ''; }; };