From 969fe07be6ce52155e51963cf7026c95fa526789 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Mon, 18 Feb 2013 11:51:33 -0500 Subject: [PATCH] Websockify: End descriptions with a period. --- modules/services/networking/websockify.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/services/networking/websockify.nix b/modules/services/networking/websockify.nix index 8921fc4f6a70..5fb07abf7825 100644 --- a/modules/services/networking/websockify.nix +++ b/modules/services/networking/websockify.nix @@ -6,7 +6,7 @@ let cfg = config.services.networking.websockify; in { options = { services.networking.websockify = { enable = mkOption { - description = "Whether to enable websockify to forward websocket connections to TCP connections"; + description = "Whether to enable websockify to forward websocket connections to TCP connections."; default = false; @@ -14,19 +14,19 @@ let cfg = config.services.networking.websockify; in { }; sslCert = mkOption { - description = "Path to the SSL certificate"; + description = "Path to the SSL certificate."; type = types.path; }; sslKey = mkOption { - description = "Path to the SSL key"; + description = "Path to the SSL key."; default = cfg.sslCert; defaultText = "config.services.networking.websockify.sslCert"; type = types.path; }; portMap = mkOption { - description = "Ports to map by default"; + description = "Ports to map by default."; default = {}; type = types.attrsOf types.int; };