infrastructure/depot/services/website/default.nix
2021-08-09 02:41:43 +01:00

11 lines
192 B
Nix

{ config, lib, pkgs, ... }:
{
services.nginx.virtualHosts = {
"${config.kw.dns.domain}" = {
root = pkgs.kat-website;
enableACME = true;
forceSSL = true;
};
};
}