petersweb-infra/nixos/caddy.nix

12 lines
115 B
Nix
Raw Normal View History

2024-12-24 02:49:21 -09:00
{
lib,
pkgs,
config,
...
}: {
services.caddy = {
enable = true;
2024-12-24 03:05:30 -09:00
configFile = ./Caddyfile;
2024-12-24 02:49:21 -09:00
};
}