14 lines
287 B
Nix
14 lines
287 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# Resume/CV Website (Nginx)
|
|
services.nginx = {
|
|
enable = true;
|
|
virtualHosts."localhost:4203" = {
|
|
root = "/home/menno/dotfiles/config/nixos/packages/server/mennovanleeuwen.nl";
|
|
locations."/" = {
|
|
index = "index.html";
|
|
};
|
|
};
|
|
};
|
|
}
|