infra/hosts/dav/baikal.nix
2026-07-14 19:23:24 +02:00

22 lines
366 B
Nix

{ config, ... }:
{
imports = [
../../services/nginx.nix
];
services = {
baikal = {
enable = true;
virtualHost = "dav.${config.networking.domain}";
};
nginx.virtualHosts."dav.${config.networking.domain}" = {
default = true;
quic = true;
kTLS = true;
forceSSL = true;
enableACME = true;
};
};
}