summaryrefslogtreecommitdiff
path: root/config/services/web/quentin/default.nix
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2021-08-14 19:33:50 +0200
committerQuentin Aristote <quentin@aristote.fr>2021-08-14 19:33:50 +0200
commit098da93e5deb2fc0043e15f3817191f5bd668e34 (patch)
treee779f777197a29a71dad5803b1d32f6302db7fb6 /config/services/web/quentin/default.nix
parentb08e8f21a4da329f0507eef1781a2e6922c27dc5 (diff)
restructure project
Diffstat (limited to 'config/services/web/quentin/default.nix')
-rw-r--r--config/services/web/quentin/default.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/config/services/web/quentin/default.nix b/config/services/web/quentin/default.nix
new file mode 100644
index 0000000..6ca712c
--- /dev/null
+++ b/config/services/web/quentin/default.nix
@@ -0,0 +1,13 @@
+{ pkgs, lib, config, ... }:
+
+{
+ import = [
+ ./ihatemoney
+ ];
+
+ services.nginx.virtualHosts."quentin.aristote.fr" = {
+ locations."/".root = "${pkgs.personal.academic-webpage}";
+ forceSSL = true;
+ enableACME = true;
+ };
+}