{ lib, config, ... }: let inherit (lib) mkIf; inherit (config) conf; in mkIf conf.website.enable { services.nginx.virtualHosts = { "twoneis.site" = { serverName = "twoneis.site"; forceSSL = false; locations = { "/" = { return = "200 \"Faggot\""; }; }; }; }; networking.firewall.allowedTCPPorts = [ 80 ]; }