14 lines
199 B
Nix
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;
|
|
};
|
|
};
|
|
}
|