9 lines
203 B
Nix
9 lines
203 B
Nix
{ config, lib, ... }:
|
|
{
|
|
services.nginx.virtualHosts."${config.domains.p2}" = lib.mkIf config.system.server.enable {
|
|
enableACME = true;
|
|
addSSL = true;
|
|
root = "/var/www/landing-page";
|
|
};
|
|
}
|