10 lines
171 B
Nix
10 lines
171 B
Nix
{ config, lib, ... }:
|
|
{
|
|
services.nginx = {
|
|
enable = true;
|
|
virtualHosts."localhost" = {
|
|
default = true;
|
|
root = "/var/www/landing-page";
|
|
};
|
|
};
|
|
}
|