nixos: correct improper uses of mkEnableOption, clarify service descriptions

Several service definitions used `mkEnableOption` with text starting
with "Whether to", which produced funny option descriptions like
"Whether to enable Whether to run the rspamd daemon..".

This commit corrects this, and adds short descriptions of services
to affected service definitions.
This commit is contained in:
Pavel Goran
2018-10-05 13:14:45 +07:00
parent 89beaef64d
commit 858b263bf0
7 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ in
services.saslauthd = {
enable = mkEnableOption "Whether to enable the Cyrus SASL authentication daemon.";
enable = mkEnableOption "saslauthd, the Cyrus SASL authentication daemon";
package = mkOption {
default = pkgs.cyrus_sasl.bin;