10 lines
214 B
Nix
10 lines
214 B
Nix
{ pkgs, lib, ... }:
|
|
let
|
|
contracts = pkgs.callPackage ../. {};
|
|
in
|
|
{
|
|
options.shb.contracts.ssl = lib.mkOption {
|
|
description = "Contract for SSL Certificate generator.";
|
|
type = contracts.ssl.certs;
|
|
};
|
|
}
|