Delete default.nix

This commit is contained in:
Aaron Honeycutt 2025-02-25 14:57:56 +00:00
parent a53e35d1af
commit c0ac1fad0d

View file

@ -1,15 +0,0 @@
{ lib, pkgs, config, ... }:
{
services.nginx = {
enable = true;
virtualHosts."ahoneybun.net" = {
root = "/mnt/DATA/Website/ahoneybun.net/public";
locations."/" = {
extraConfig = ''
default_type text/html;
'';
};
};
};
}