···4848 enableACME = mkOption {
4949 type = types.bool;
5050 default = false;
5151- description = "Whether to ask Let's Encrypt to sign a certificate for this vhost.";
5151+ description = ''
5252+ Whether to ask Let's Encrypt to sign a certificate for this vhost.
5353+ Alternately, you can use an existing certificate through <option>useACMEHost</option>.
5454+ '';
5555+ };
5656+5757+ useACMEHost = mkOption {
5858+ type = types.nullOr types.str;
5959+ default = null;
6060+ description = ''
6161+ A host of an existing Let's Encrypt certificate to use.
6262+ This is useful if you have many subdomains and want to avoid hitting the
6363+ <link xlink:href="https://letsencrypt.org/docs/rate-limits/">rate limit</link>.
6464+ Alternately, you can generate a certificate through <option>enableACME</option>.
6565+ '';
5266 };
53675468 acmeRoot = mkOption {