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

{
  imports = [ ./ihatemoney ];

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