Add other web files and CUDA shell

This commit is contained in:
Aaron Honeycutt 2023-03-30 07:50:08 -06:00
parent 09e4163b2d
commit 3801b4d58d
5 changed files with 86 additions and 4 deletions

17
web/tildecafe-com.nix Normal file
View file

@ -0,0 +1,17 @@
{ config, pkgs, ... }:
{
services.nginx = {
enable = true;
virtualHosts = {
"tildecafe.com" = {
forceSSL = true;
enableACME = true;
locations."/" = {
root = "/var/www/tildecafe";
};
};
};
};
}