infrastructure/depot/services/website/default.nix
kat witch 59f33b3288
weh
2021-08-12 06:24:00 +01:00

11 lines
197 B
Nix

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