fix(doc): missing description and lib.mdDoc
This commit is contained in:
parent
86c315dd40
commit
275c2ce0f4
2 changed files with 5 additions and 1 deletions
|
@ -46,6 +46,7 @@ in
|
||||||
nixpkgs = mkOption {
|
nixpkgs = mkOption {
|
||||||
type = attrs;
|
type = attrs;
|
||||||
default = { };
|
default = { };
|
||||||
|
visible = false;
|
||||||
};
|
};
|
||||||
netconf = {
|
netconf = {
|
||||||
xmls.configuration = mkOption {
|
xmls.configuration = mkOption {
|
||||||
|
@ -77,6 +78,9 @@ in
|
||||||
rpc = mkOption {
|
rpc = mkOption {
|
||||||
type = package;
|
type = package;
|
||||||
readOnly = true;
|
readOnly = true;
|
||||||
|
description = ''
|
||||||
|
The final rpc xml to send via netconf.
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -33,7 +33,7 @@ in
|
||||||
node = 9002;
|
node = 9002;
|
||||||
cgroup = 9003;
|
cgroup = 9003;
|
||||||
};
|
};
|
||||||
description = lib.mdDoc ''
|
description = ''
|
||||||
Ports to listen on for each exporter.
|
Ports to listen on for each exporter.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue