23 lines
557 B
Nix
23 lines
557 B
Nix
{ pkgs, ... }:
|
|
let
|
|
pages = pkgs.fetchgit {
|
|
url = "https://git.fainsin.bzh/Laurent/resume";
|
|
fetchLFS = true; # https://github.com/go-gitea/gitea/issues/4773
|
|
rev = "57134888a29bc56e4ca3a2507d4e3b728619948f"; # pages
|
|
sha256 = "sha256-i4VwSFB5XoI5ySfGx4sCeZDWqAJ9p53OCy9ewlOCWFU=";
|
|
};
|
|
in {
|
|
services.nginx.virtualHosts = {
|
|
"resume.laurent.fainsin.bzh" = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
locations = {
|
|
"/" = {
|
|
root = "${pages}/";
|
|
index = "resume.pdf";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|