nixos/thelounge: fix example rendering
This commit is contained in:
parent
9999996fd6
commit
000004d123
1 changed files with 10 additions and 8 deletions
|
@ -48,14 +48,16 @@ in
|
||||||
extraConfig = mkOption {
|
extraConfig = mkOption {
|
||||||
default = { };
|
default = { };
|
||||||
type = types.attrs;
|
type = types.attrs;
|
||||||
example = literalExpression ''{
|
example = literalExpression ''
|
||||||
reverseProxy = true;
|
{
|
||||||
defaults = {
|
reverseProxy = true;
|
||||||
name = "Your Network";
|
defaults = {
|
||||||
host = "localhost";
|
name = "Your Network";
|
||||||
port = 6697;
|
host = "localhost";
|
||||||
};
|
port = 6697;
|
||||||
}'';
|
};
|
||||||
|
}
|
||||||
|
'';
|
||||||
description = lib.mdDoc ''
|
description = lib.mdDoc ''
|
||||||
The Lounge's {file}`config.js` contents as attribute set (will be
|
The Lounge's {file}`config.js` contents as attribute set (will be
|
||||||
converted to JSON to generate the configuration file).
|
converted to JSON to generate the configuration file).
|
||||||
|
|
Loading…
Reference in a new issue