summaryrefslogtreecommitdiff
path: root/modules/services
diff options
context:
space:
mode:
authorEmily <vcs@emily.moe>2023-07-21 09:15:33 +0100
committerEmily <vcs@emily.moe>2023-07-21 21:17:59 +0100
commit5fd8914dac6ba43ea650fadec35344f20ce50544 (patch)
treeae6981fa855940bb6ca0a38cd76f66840690f01e /modules/services
parent61662a63bfe1726588c1da6b412df86d8ca94d63 (diff)
treewide: fix `mkEnableOption` docs
`mkEnableOption` wraps its argument in a complete sentence with a terminating full stop; an additional newline will add an incorrect space before the end of the sentence in the rendered documentation, and any additional verbiage that doesn't fit into the form "Whether to enable [...]." is also incorrect. In the latter case, the description can be overridden manually.
Diffstat (limited to 'modules/services')
-rw-r--r--modules/services/synergy/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/services/synergy/default.nix b/modules/services/synergy/default.nix
index 95daf37..9933fe6 100644
--- a/modules/services/synergy/default.nix
+++ b/modules/services/synergy/default.nix
@@ -54,8 +54,7 @@ in
Using this requires a TLS certificate that can be
generated by starting the Synergy GUI once and entering
- a valid product key.
- '');
+ a valid product key'');
cert = mkOption {
type = types.nullOr types.str;
default = null;
@@ -102,8 +101,7 @@ in
Using this requires a TLS certificate that can be
generated by starting the Synergy GUI once and entering
- a valid product key.
- '');
+ a valid product key'');
cert = mkOption {
type = types.nullOr types.str;
default = null;