selfhostblocks/modules/contracts/ssl/dummyModule.nix
2025-12-03 22:19:45 +01:00

11 lines
218 B
Nix

{ lib, shb, ... }:
{
imports = [
../../../lib/module.nix
];
options.shb.contracts.ssl = lib.mkOption {
description = "Contract for SSL Certificate generator.";
type = shb.contracts.ssl.certs;
};
}