14 lines
216 B
Nix
14 lines
216 B
Nix
{ config, ... }:
|
|
let
|
|
metaRepo = config.meta.lib.repo;
|
|
in
|
|
{
|
|
flake.modules.nixos.caddy = {
|
|
services.caddy = {
|
|
enable = true;
|
|
email = metaRepo.contact.email;
|
|
openFirewall = true;
|
|
};
|
|
};
|
|
}
|