blob: 468dec48a7191f589c280421ee6b25a6417bd29c (
plain)
1
2
3
4
5
6
7
8
9
|
{ config, pkgs, ... }:
{
services.nginx.virtualHosts."quentin.${config.networking.domain}" = {
locations."/".root = "${pkgs.personal.academic-webpage}";
forceSSL = true;
enableACME = true;
};
}
|