From dd2dedafa337888bd85b3df6bbcfb26ab7398c56 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 25 Nov 2014 16:01:27 +0100 Subject: [PATCH] Style fixes --- .../services/networking/strongswan.nix | 21 +++++++++++-------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/nixos/modules/services/networking/strongswan.nix b/nixos/modules/services/networking/strongswan.nix index 4ceb8254b1e..19ad635d07e 100644 --- a/nixos/modules/services/networking/strongswan.nix +++ b/nixos/modules/services/networking/strongswan.nix @@ -57,8 +57,9 @@ in example = [ "/run/keys/ipsec-foo.secret" ]; description = '' A list of paths to IPSec secret files. These - files will be included into the main ipsec.secrets file - with the `include' directive. It is safer if these paths are absolute. + files will be included into the main ipsec.secrets file with + the include directive. It is safer if these + paths are absolute. ''; }; @@ -67,8 +68,9 @@ in default = {}; example = { cachecrls = "yes"; strictcrlpolicy = "yes"; }; description = '' - A set of options for the `config setup' section of - the `ipsec.conf' file. Defines general configuration parameters. + A set of options for the ‘config setup’ section of the + ipsec.conf file. Defines general + configuration parameters. ''; }; @@ -89,8 +91,8 @@ in }; }; description = '' - A set of connections and their options for the `conn xxx' - sections of the `ipsec.conf' file. + A set of connections and their options for the ‘conn xxx’ + sections of the ipsec.conf file. ''; }; @@ -105,15 +107,16 @@ in }; }; description = '' - A set of CAs (certification authorities) and their options - for the `ca xxx' sections of the `ipsec.conf' file. + A set of CAs (certification authorities) and their options for + the ‘ca xxx’ sections of the ipsec.conf + file. ''; }; }; config = with cfg; mkIf enable { systemd.services.strongswan = { - description = "strongSwan IPSec service"; + description = "strongSwan IPSec Service"; wantedBy = [ "multi-user.target" ]; path = with pkgs; [ kmod ]; # XXX Linux wants = [ "keys.target" ];