about summary refs log tree commit diff
path: root/nixos/modules/security
diff options
context:
space:
mode:
authorpennae <github@quasiparticle.net>2022-08-14 05:16:55 +0200
committerpennae <82953136+pennae@users.noreply.github.com>2022-08-19 22:40:58 +0200
commitb51f8036c2c4e887ce45372dc6b7a4c4a54a0ea0 (patch)
tree3c48653b88d178e089b2d2b60ef8ff75f2f9cdd9 /nixos/modules/security
parent72b507d5a20d9eec76addd4b812dbf11b95264a9 (diff)
nixos/*: use properly indented strings for option docs
using regular strings works well for docbook because docbook is not as
whitespace-sensitive as markdown. markdown would render all of these as
code blocks when given the chance.
Diffstat (limited to 'nixos/modules/security')
-rw-r--r--nixos/modules/security/pam.nix24
1 files changed, 12 insertions, 12 deletions
diff --git a/nixos/modules/security/pam.nix b/nixos/modules/security/pam.nix
index fefa303603ddc..ca71a5b9c15ed 100644
--- a/nixos/modules/security/pam.nix
+++ b/nixos/modules/security/pam.nix
@@ -773,18 +773,18 @@ in
           }
        ];
 
-     description =
-       '' Define resource limits that should apply to users or groups.
-          Each item in the list should be an attribute set with a
-          <varname>domain</varname>, <varname>type</varname>,
-          <varname>item</varname>, and <varname>value</varname>
-          attribute.  The syntax and semantics of these attributes
-          must be that described in <citerefentry><refentrytitle>limits.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
-
-          Note that these limits do not apply to systemd services,
-          whose limits can be changed via <option>systemd.extraConfig</option>
-          instead.
-       '';
+     description = ''
+       Define resource limits that should apply to users or groups.
+       Each item in the list should be an attribute set with a
+       <varname>domain</varname>, <varname>type</varname>,
+       <varname>item</varname>, and <varname>value</varname>
+       attribute.  The syntax and semantics of these attributes
+       must be that described in <citerefentry><refentrytitle>limits.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
+
+       Note that these limits do not apply to systemd services,
+       whose limits can be changed via <option>systemd.extraConfig</option>
+       instead.
+     '';
     };
 
     security.pam.services = mkOption {