nixos/sshd: fix example rendering

Changed files
+6 -4
nixos
modules
services
networking
ssh
+6 -4
nixos/modules/services/networking/ssh/sshd.nix
···
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 = {