Files
lux/modules/features/services/caddy.nix
T
2026-04-25 00:19:20 +02:00

14 lines
199 B
Nix

{ config, ... }:
let
repo = config.repo;
in
{
flake.modules.nixos.caddy = {
services.caddy = {
enable = true;
email = repo.contact.email;
openFirewall = true;
};
};
}