blob: 0111f8f978bf5ce9574e635b5009a4c2cd997028 (
plain)
1
2
3
4
5
6
7
8
9
|
{ config, lib, pkgs, inputs, ... }:
{
services.nginx.virtualHosts."stuebinm.eu" = {
enableACME = true;
forceSSL = true;
locations."/".root = import inputs.blog { inherit pkgs; };
};
}
|