2023-09-17 19:51:08 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib; let
|
|
|
|
cfg = config.skynet_acme;
|
|
|
|
in {
|
2023-08-06 18:56:22 +00:00
|
|
|
imports = [];
|
2023-04-20 18:03:11 +00:00
|
|
|
|
2023-10-26 00:02:39 +00:00
|
|
|
options = {
|
|
|
|
skynet_acme = {
|
|
|
|
domains = lib.mkOption {
|
|
|
|
default = [];
|
|
|
|
type = lib.types.listOf lib.types.str;
|
|
|
|
description = ''
|
|
|
|
A list of domains to use for this server.
|
|
|
|
'';
|
|
|
|
};
|
2023-04-20 18:03:11 +00:00
|
|
|
};
|
2023-08-06 18:56:22 +00:00
|
|
|
};
|
|
|
|
config = {
|
|
|
|
# group that will own the certificates
|
|
|
|
users.groups.acme = {};
|
|
|
|
|
|
|
|
age.secrets.acme.file = ../secrets/dns_certs.secret.age;
|
|
|
|
|
|
|
|
security.acme = {
|
|
|
|
preliminarySelfsigned = false;
|
|
|
|
acceptTerms = true;
|
|
|
|
|
|
|
|
defaults = {
|
|
|
|
email = "admin_acme@skynet.ie";
|
|
|
|
# we use our own dns authorative server for verifying we own the domain.
|
|
|
|
dnsProvider = "rfc2136";
|
|
|
|
credentialsFile = config.age.secrets.acme.path;
|
|
|
|
};
|
2023-04-20 18:03:11 +00:00
|
|
|
|
2023-08-06 18:56:22 +00:00
|
|
|
certs = {
|
|
|
|
"skynet" = {
|
|
|
|
domain = "skynet.ie";
|
|
|
|
extraDomainNames = cfg.domains;
|
|
|
|
};
|
2023-04-20 18:03:11 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|