blob: 6ca712ccca1da7f82782007c675e2b08b433a113 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ pkgs, lib, config, ... }:
{
import = [
./ihatemoney
];
services.nginx.virtualHosts."quentin.aristote.fr" = {
locations."/".root = "${pkgs.personal.academic-webpage}";
forceSSL = true;
enableACME = true;
};
}
|