about summary refs log tree commit diff
path: root/nixos/modules/security
diff options
context:
space:
mode:
authorNaïm Favier <n@monade.li>2023-01-21 11:06:46 +0100
committerpennae <82953136+pennae@users.noreply.github.com>2023-01-21 18:08:38 +0100
commit363158603a419725bb088aeeb264ecf6a60fe4fd (patch)
tree0160e2ef4197176812a9c365a8826b10e3a4c5e8 /nixos/modules/security
parent5305f766fd4386f69a8f37fdb279763ef9d32a2e (diff)
nixos: fix backticks in Markdown descriptions
Diffstat (limited to 'nixos/modules/security')
-rw-r--r--nixos/modules/security/acme/default.nix2
-rw-r--r--nixos/modules/security/audit.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/security/acme/default.nix b/nixos/modules/security/acme/default.nix
index 06db420632e5f..eb4f11f7dcdec 100644
--- a/nixos/modules/security/acme/default.nix
+++ b/nixos/modules/security/acme/default.nix
@@ -727,7 +727,7 @@ in {
           Default values inheritable by all configured certs. You can
           use this to define options shared by all your certs. These defaults
           can also be ignored on a per-cert basis using the
-          `security.acme.certs.''${cert}.inheritDefaults' option.
+          {option}`security.acme.certs.''${cert}.inheritDefaults` option.
         '';
       };
 
diff --git a/nixos/modules/security/audit.nix b/nixos/modules/security/audit.nix
index 06b4766c8f5a9..afc7dd13039d5 100644
--- a/nixos/modules/security/audit.nix
+++ b/nixos/modules/security/audit.nix
@@ -57,7 +57,7 @@ in {
         type        = types.enum [ false true "lock" ];
         default     = false;
         description = lib.mdDoc ''
-          Whether to enable the Linux audit system. The special `lock' value can be used to
+          Whether to enable the Linux audit system. The special `lock` value can be used to
           enable auditing and prevent disabling it until a restart. Be careful about locking
           this, as it will prevent you from changing your audit configuration until you
           restart. If possible, test your configuration using build-vm beforehand.