mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 21:29:48 +01:00
blueman-applet: add note about required system service
This commit is contained in:
parent
3f430627df
commit
7e6f3364bc
1 changed files with 9 additions and 1 deletions
|
@ -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 ];
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue