summaryrefslogtreecommitdiff
path: root/flora/services/blog.nix
blob: 056a63b8ce6bc955d1f8a2376cae0dc6fdd90cbb (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);
  };
}