Files
nixos-config/servers/hetzner/modules/security/acme.nix
T
jory c5f771bd53
CI / Formatting check (x86_64-linux) (push) Has been cancelled
CI / Flake check (aarch64-linux) (push) Has been cancelled
CI / Flake check (x86_64-linux) (push) Has been cancelled
CI / Formatting check (aarch64-linux) (push) Has been cancelled
Added hetzner server configs
2026-07-11 20:28:51 +02:00

18 lines
376 B
Nix

{
config,
pkgs,
lib,
...
}: {
# NOTE: Caddy handles all TLS natively via its ACME integration.
# This module is kept as a fallback for non-Caddy services.
# Currently NOT imported in default.nix — uncomment there to activate.
security.acme = {
acceptTerms = true;
defaults = {
email = "jory@severijnse.eu";
group = "caddy";
};
};
}