dns: add write.sealight.xyz?

This commit is contained in:
Anish Lakhwara
2024-07-14 16:43:57 -07:00
parent ec29b3c156
commit 6522536dc8
5 changed files with 182 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{pkgs, ... }:
{
services.nginx = {
enable = true;
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
};
# Enables MySQL
services.mysql = {
enable = true;
package = pkgs.mariadb;
};
services."write.sealight.xyz".enable = true;
}