summaryrefslogtreecommitdiff
path: root/config/services/web/quentin/default.nix
diff options
context:
space:
mode:
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;
+ };
+}