nix-powerpc/nginx.nix
2025-02-10 11:47:09 +00:00

13 lines
173 B
Nix

{ ... }:
{
services.nginx = {
enable = true;
virtualHosts = {
"ppc" = {
locations."/" = {
root = ./html;
};
};
};
};
}