1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-11-15 23:59:45 +01:00

blueman-applet: minor cleanup of enable option

In particular use proper DocBook format in description.
This commit is contained in:
Robert Helgesson 2019-12-25 22:00:54 +01:00
parent a5d3d6f665
commit 8d14ffbe88
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89

View file

@ -5,15 +5,18 @@ with lib;
{ {
options = { options = {
services.blueman-applet = { services.blueman-applet = {
enable = mkEnableOption '' enable = mkEnableOption "" // {
Blueman applet. description = ''
Whether to enable the Blueman applet.
Note, for the applet to work, 'blueman' service should be enabled system-wide </para><para>
since it requires running 'blueman-mechanism' service activated. Note, for the applet to work, the 'blueman' service should
You can enable it in system configuration: be enabled system-wide. You can enable it in the system
configuration using
services.blueman.enable = true; <programlisting language="nix">
''; services.blueman.enable = true;
</programlisting>
'';
};
}; };
}; };