self-hosting/modules/website-marie.nix

9 lines
185 B
Nix
Raw Normal View History

2021-12-07 14:57:13 +01:00
{ config, lib, pkgs, ... }:
{
services.nginx.virtualHosts."osteopathie.froidmont.org" = {
enableACME = true;
forceSSL = true;
root = "/nix/var/data/website-marie";
};
}