From 8d14ffbe8841d9ab4ec77cf2fb15e58ef4f6bca3 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Wed, 25 Dec 2019 22:00:54 +0100 Subject: [PATCH] blueman-applet: minor cleanup of enable option In particular use proper DocBook format in description. --- modules/services/blueman-applet.nix | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/modules/services/blueman-applet.nix b/modules/services/blueman-applet.nix index f5d2f4d68..0a071f083 100644 --- a/modules/services/blueman-applet.nix +++ b/modules/services/blueman-applet.nix @@ -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. + + Note, for the applet to work, the 'blueman' service should + be enabled system-wide. You can enable it in the system + configuration using + + services.blueman.enable = true; + + ''; + }; }; };