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 {
|
||||
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).
|
||||
|
|
Loading…
Reference in a new issue