server/services/website.nix
2024-10-07 15:32:17 +01:00

10 lines
168 B
Nix
Executable File

{ config, domains, ... }:
{
services.nginx.virtualHosts."${domains.root}" = {
forceSSL = true;
enableACME = true;
root = "/var/www/spyhoodle.me";
};
}