0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

nixos/*: automatically convert option docs

This commit is contained in:
pennae 2022-08-05 19:39:00 +02:00
parent 423545fe48
commit 087472b1e5
162 changed files with 1552 additions and 1552 deletions

View file

@ -32,7 +32,7 @@ in
server = mkOption {
type = types.enum [];
description = ''
description = lib.mdDoc ''
Choice of TLS proxy server.
'';
example = "ghostunnel";
@ -41,28 +41,28 @@ in
openFirewall = mkOption {
type = types.bool;
default = false;
description = ''
description = lib.mdDoc ''
Whether to open the port in the firewall.
'';
};
tls.cacert = mkOption {
type = types.path;
description = ''
description = lib.mdDoc ''
Path to CA certificate to use for client authentication.
'';
};
tls.cert = mkOption {
type = types.path;
description = ''
description = lib.mdDoc ''
Path to certificate describing the server.
'';
};
tls.key = mkOption {
type = types.path;
description = ''
description = lib.mdDoc ''
Path to the private key corresponding to the server certificate.
Use a string for this setting. Otherwise it will be copied to the Nix
@ -73,14 +73,14 @@ in
port = mkOption {
type = types.port;
default = 2376;
description = ''
description = lib.mdDoc ''
TCP port number for receiving TLS connections.
'';
};
listenAddress = mkOption {
type = types.str;
default = "0.0.0.0";
description = ''
description = lib.mdDoc ''
Interface address for receiving TLS connections.
'';
};