This commit is contained in:
zackartz 2024-05-06 00:29:50 -04:00
parent 07877938f1
commit b2b0448e2a
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA
2 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{
inputs,
pkgs,
...
}: {
services.nginx.virtualHosts."cv.zackmyers.io" = {
forceSSL = true;
enableACME = true;
locations."/".root = "${inputs.resume.packages.${pkgs.system}.default}";
};
}