1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-27 16:57:29 +02: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 = {
services.blueman-applet = {
enable = mkEnableOption ''
Blueman applet.
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.blueman.enable = true;
'';
enable = mkEnableOption "" // {
description = ''
Whether to enable the Blueman applet.
</para><para>
Note, for the applet to work, the 'blueman' service should
be enabled system-wide. You can enable it in the system
configuration using
<programlisting language="nix">
services.blueman.enable = true;
</programlisting>
'';
};
};
};