tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
nixos/thelounge: fix example rendering
Sandro Jäckel
2 years ago
000004d1
9999996f
+10
-8
1 changed file
expand all
collapse all
unified
split
nixos
modules
services
networking
thelounge.nix
+10
-8
nixos/modules/services/networking/thelounge.nix
reviewed
···
48
48
extraConfig = mkOption {
49
49
default = { };
50
50
type = types.attrs;
51
51
-
example = literalExpression ''{
52
52
-
reverseProxy = true;
53
53
-
defaults = {
54
54
-
name = "Your Network";
55
55
-
host = "localhost";
56
56
-
port = 6697;
57
57
-
};
58
58
-
}'';
51
51
+
example = literalExpression ''
52
52
+
{
53
53
+
reverseProxy = true;
54
54
+
defaults = {
55
55
+
name = "Your Network";
56
56
+
host = "localhost";
57
57
+
port = 6697;
58
58
+
};
59
59
+
}
60
60
+
'';
59
61
description = lib.mdDoc ''
60
62
The Lounge's {file}`config.js` contents as attribute set (will be
61
63
converted to JSON to generate the configuration file).