nixos/thelounge: fix example rendering

Changed files
+10 -8
nixos
modules
services
networking
+10 -8
nixos/modules/services/networking/thelounge.nix
···
extraConfig = mkOption {
default = { };
type = types.attrs;
-
example = literalExpression ''{
-
reverseProxy = true;
-
defaults = {
-
name = "Your Network";
-
host = "localhost";
-
port = 6697;
-
};
-
}'';
+
example = literalExpression ''
+
{
+
reverseProxy = true;
+
defaults = {
+
name = "Your Network";
+
host = "localhost";
+
port = 6697;
+
};
+
}
+
'';
description = lib.mdDoc ''
The Lounge's {file}`config.js` contents as attribute set (will be
converted to JSON to generate the configuration file).