summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/networking/murmur.nix
diff options
context:
space:
mode:
authorpennae <github@quasiparticle.net>2022-08-30 14:08:50 +0200
committerpennae <github@quasiparticle.net>2022-08-31 17:27:36 +0200
commitf2ea09ecbe1fa1da32eaa6e036d64ac324a2986f (patch)
tree8635d6ef91a1d530e32d8eb0e360c42b1c755b6d /nixos/modules/services/networking/murmur.nix
parent722b99bc0eb57711c0498a86a3f55e6c69cdb05f (diff)
nixos/*: convert options with listings
minor rendering changes.
Diffstat (limited to 'nixos/modules/services/networking/murmur.nix')
-rw-r--r--nixos/modules/services/networking/murmur.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/nixos/modules/services/networking/murmur.nix b/nixos/modules/services/networking/murmur.nix
index 73787f433b45..32498ca25ea8 100644
--- a/nixos/modules/services/networking/murmur.nix
+++ b/nixos/modules/services/networking/murmur.nix
@@ -261,25 +261,25 @@ in
type = types.nullOr types.path;
default = null;
example = "/var/lib/murmur/murmurd.env";
- description = ''
- Environment file as defined in <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
+ description = lib.mdDoc ''
+ Environment file as defined in {manpage}`systemd.exec(5)`.
Secrets may be passed to the service without adding them to the world-readable
Nix store, by specifying placeholder variables as the option value in Nix and
setting these variables accordingly in the environment file.
- <programlisting>
+ ```
# snippet of murmur-related config
services.murmur.password = "$MURMURD_PASSWORD";
- </programlisting>
+ ```
- <programlisting>
+ ```
# content of the environment file
MURMURD_PASSWORD=verysecretpassword
- </programlisting>
+ ```
Note that this file needs to be available on the host on which
- <literal>murmur</literal> is running.
+ `murmur` is running.
'';
};
};