tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
nixos/ttyd: fix example rendering
Sandro Jäckel
2 years ago
0000004f
000004d1
+6
-5
1 changed file
expand all
collapse all
unified
split
nixos
modules
services
web-servers
ttyd.nix
+6
-5
nixos/modules/services/web-servers/ttyd.nix
···
78
78
clientOptions = mkOption {
79
79
type = types.attrsOf types.str;
80
80
default = {};
81
81
-
example = literalExpression ''{
82
82
-
fontSize = "16";
83
83
-
fontFamily = "Fira Code";
84
84
-
85
85
-
}'';
81
81
+
example = literalExpression ''
82
82
+
{
83
83
+
fontSize = "16";
84
84
+
fontFamily = "Fira Code";
85
85
+
}
86
86
+
'';
86
87
description = lib.mdDoc ''
87
88
Attribute set of client options for xtermjs.
88
89
<https://xtermjs.org/docs/api/terminal/interfaces/iterminaloptions/>