config/hosts/pluto/services/cv.nix

17 lines
280 B
Nix
Raw Normal View History

2024-05-06 00:29:50 -04:00
{
inputs,
pkgs,
...
}: {
services.nginx.virtualHosts."cv.zackmyers.io" = {
forceSSL = true;
enableACME = true;
2024-05-06 00:44:28 -04:00
locations."/" = {
root = "${inputs.resume.packages.${pkgs.system}.default}";
};
extraConfig = ''
index resume.pdf
'';
2024-05-06 00:29:50 -04:00
};
}