initial snapshot

This commit is contained in:
Chloe Bethel 2025-02-10 11:47:09 +00:00
commit 24b41c4faf
16 changed files with 452 additions and 0 deletions

13
nginx.nix Normal file
View file

@ -0,0 +1,13 @@
{ ... }:
{
services.nginx = {
enable = true;
virtualHosts = {
"ppc" = {
locations."/" = {
root = ./html;
};
};
};
};
}