self-hosting/modules/website-marie.nix
2021-12-07 14:57:13 +01:00

8 lines
185 B
Nix

{ config, lib, pkgs, ... }:
{
services.nginx.virtualHosts."osteopathie.froidmont.org" = {
enableACME = true;
forceSSL = true;
root = "/nix/var/data/website-marie";
};
}