lol

nixos/sshd: fix example rendering

+6 -4
+6 -4
nixos/modules/services/networking/ssh/sshd.nix
··· 279 279 settings = mkOption { 280 280 description = lib.mdDoc "Configuration for `sshd_config(5)`."; 281 281 default = { }; 282 - example = literalExpression ''{ 283 - UseDns = true; 284 - PasswordAuthentication = false; 285 - }''; 282 + example = literalExpression '' 283 + { 284 + UseDns = true; 285 + PasswordAuthentication = false; 286 + } 287 + ''; 286 288 type = types.submodule ({name, ...}: { 287 289 freeformType = settingsFormat.type; 288 290 options = {