server/services/website.nix

10 lines
168 B
Nix
Raw Normal View History

2024-09-24 20:36:31 +01:00
{ config, domains, ... }:
{
services.nginx.virtualHosts."${domains.root}" = {
forceSSL = true;
enableACME = true;
root = "/var/www/spyhoodle.me";
};
}