config/hosts/pluto/services/cv.nix

12 lines
211 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;
locations."/".root = "${inputs.resume.packages.${pkgs.system}.default}";
};
}