infrastructure/services/website.nix
2022-09-23 17:57:57 -07:00

11 lines
181 B
Nix

{ config, lib, pkgs, ... }:
{
services.nginx.virtualHosts = {
"kittywit.ch" = {
root = pkgs.gensokyoZone;
enableACME = true;
forceSSL = true;
};
};
}