From 8ab188eb162087855f19ef66cfdc6e39e724bc47 Mon Sep 17 00:00:00 2001 From: obadz Date: Sat, 18 Jun 2016 16:26:15 +0100 Subject: [PATCH] pptpd service: improve option descriptions per @bjornfor's suggestion --- nixos/modules/services/networking/pptpd.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/nixos/modules/services/networking/pptpd.nix b/nixos/modules/services/networking/pptpd.nix index 0ae6ae4cf2ab..efed604d3dda 100644 --- a/nixos/modules/services/networking/pptpd.nix +++ b/nixos/modules/services/networking/pptpd.nix @@ -5,35 +5,35 @@ with lib; { options = { services.pptpd = { - enable = mkEnableOption "enable pptpd running on startup"; + enable = mkEnableOption "Whether pptpd should be run on startup."; serverIp = mkOption { type = types.string; - description = "server ip"; + description = "The server-side IP address."; default = "10.124.124.1"; }; clientIpRange = mkOption { type = types.string; - description = "client ip range"; + description = "The range from which client IPs are drawn."; default = "10.124.142.2-11"; }; maxClients = mkOption { type = types.int; - description = "maximum number of simultaneous connections"; + description = "The maximum number of simultaneous connections."; default = 10; }; extraPptpdOptions = mkOption { type = types.lines; - description = "extra lines for the pptpd configuration files"; + description = "Adds extra lines to the pptpd configuration file."; default = ""; }; extraPppdOptions = mkOption { type = types.lines; - description = "extra lines for the pppd options files"; + description = "Adds extra lines to the pppd options file."; default = ""; example = '' ms-dns 8.8.8.8