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