diff options
Diffstat (limited to 'config/services/web/quentin/default.nix')
| -rw-r--r-- | config/services/web/quentin/default.nix | 13 |
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; + }; +} |
