40 lines
1,017 B
Nix
40 lines
1,017 B
Nix
{ config, lib, ... }:
|
|
|
|
let
|
|
cfg = config.aux.system.services.acme;
|
|
in
|
|
{
|
|
options = {
|
|
aux.system.services.acme = {
|
|
enable = lib.mkEnableOption (
|
|
lib.mdDoc "Enable the ACME client (for Let's Encrypt TLS certificates)."
|
|
);
|
|
|
|
certs = lib.mkOption {
|
|
default = { };
|
|
type = lib.types.attrs;
|
|
description = "Cert configurations for ACME.";
|
|
};
|
|
|
|
defaultEmail = lib.mkOption {
|
|
default = "";
|
|
type = lib.types.str;
|
|
description = "Default admin email to use for problems.";
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
security.acme = {
|
|
acceptTerms = true;
|
|
defaults.email = cfg.defaultEmail;
|
|
certs = cfg.certs;
|
|
};
|
|
|
|
# /var/lib/acme/.challenges must be writable by the ACME user
|
|
# and readable by the Nginx user. The easiest way to achieve
|
|
# this is to add the Nginx user to the ACME group.
|
|
users.users.nginx.extraGroups = lib.mkIf config.aux.system.services.nginx.enable [ "acme" ];
|
|
};
|
|
}
|