summaryrefslogtreecommitdiff
path: root/config/services/web/quentin/default.nix
blob: d5ccf803e3b4276a9aa08668d3133e0194549665 (plain)
1
2
3
4
5
6
7
8
9
{ pkgs, ... }:

{
  services.nginx.virtualHosts."quentin.${config.networking.domain}" = {
    locations."/".root = "${pkgs.personal.academic-webpage}";
    forceSSL = true;
    enableACME = true;
  };
}