nix-config/modules/proxy/default.nix

10 lines
143 B
Nix
Raw Permalink Normal View History

2024-11-10 17:54:08 -05:00
{ pkgs, ... }:
{
services.caddy = {
enable = true;
package = pkgs.caddy;
};
networking.firewall.allowedTCPPorts = [ 80 443 ];
}