make index resume.pdf

This commit is contained in:
zackartz 2024-05-06 00:44:28 -04:00
parent b293f412f9
commit be42470678
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA

View file

@ -6,6 +6,11 @@
services.nginx.virtualHosts."cv.zackmyers.io" = {
forceSSL = true;
enableACME = true;
locations."/".root = "${inputs.resume.packages.${pkgs.system}.default}";
locations."/" = {
root = "${inputs.resume.packages.${pkgs.system}.default}";
};
extraConfig = ''
index resume.pdf
'';
};
}