{ pkgs, config, ... }: { config = { services.caddy = { enable = true; virtualHosts."https://tzlil.club".extraConfig = '' try_files ${pkgs.writeText "index.html" '' hello world ''} / ''; }; networking.firewall.allowedTCPPorts = [443]; }; }