nixos-configuration/services/wiki.nix

15 lines
298 B
Nix
Raw Normal View History

2024-01-30 18:35:38 +00:00
{ system, ... }:
let
wiki = builtins.getFlake
"github:jrpotter/wiki/ea2b31616bb8fbe633db224d6d663adbebf2f972";
2024-01-30 18:35:38 +00:00
in
{
services.nginx.virtualHosts."wiki.jrpotter.com" = {
forceSSL = true;
enableACME = true;
locations."/" = {
root = wiki.packages.${system}.app;
};
};
}