tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
nixos/sshd: fix example rendering
Sandro Jäckel
2 years ago
9999996f
b1434f14
+6
-4
1 changed file
expand all
collapse all
unified
split
nixos
modules
services
networking
ssh
sshd.nix
+6
-4
nixos/modules/services/networking/ssh/sshd.nix
reviewed
···
279
279
settings = mkOption {
280
280
description = lib.mdDoc "Configuration for `sshd_config(5)`.";
281
281
default = { };
282
282
-
example = literalExpression ''{
283
283
-
UseDns = true;
284
284
-
PasswordAuthentication = false;
285
285
-
}'';
282
282
+
example = literalExpression ''
283
283
+
{
284
284
+
UseDns = true;
285
285
+
PasswordAuthentication = false;
286
286
+
}
287
287
+
'';
286
288
type = types.submodule ({name, ...}: {
287
289
freeformType = settingsFormat.type;
288
290
options = {