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:
parent
a12a8f7977
commit
a5d3d6f665
|
@ -8,11 +8,11 @@ with lib;
|
||||||
enable = mkEnableOption ''
|
enable = mkEnableOption ''
|
||||||
Blueman applet.
|
Blueman applet.
|
||||||
|
|
||||||
Note, for the applet to work, 'blueman' package should also be installed system-wide
|
Note, for the applet to work, 'blueman' service should be enabled system-wide
|
||||||
since it requires running 'blueman-mechanism' service activated via dbus.
|
since it requires running 'blueman-mechanism' service activated.
|
||||||
You can add it to the dbus packages in system configuration:
|
You can enable it in system configuration:
|
||||||
|
|
||||||
services.dbus.packages = [ pkgs.blueman ];
|
services.blueman.enable = true;
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue