nixos/sshd: fix example rendering

This commit is contained in:
Sandro Jäckel
2023-06-30 18:14:16 +02:00
parent b1434f14da
commit 9999996fd6
@@ -279,10 +279,12 @@ in
settings = mkOption {
description = lib.mdDoc "Configuration for `sshd_config(5)`.";
default = { };
example = literalExpression ''{
UseDns = true;
PasswordAuthentication = false;
}'';
example = literalExpression ''
{
UseDns = true;
PasswordAuthentication = false;
}
'';
type = types.submodule ({name, ...}: {
freeformType = settingsFormat.type;
options = {