nix-configs/web/tildecafe-com.nix
Aaron Honeycutt de53a26819 format nix
2025-09-18 17:24:56 -06:00

18 lines
269 B
Nix

{
config,
pkgs,
...
}: {
services.nginx = {
enable = true;
virtualHosts = {
"tildecafe.com" = {
forceSSL = true;
enableACME = true;
locations."/" = {
root = "/var/www/tildecafe";
};
};
};
};
}