Getting a lot closer..

This commit is contained in:
Jimbo 2024-10-09 03:17:07 -04:00
parent e3bacb2d84
commit 6c524804f0
221 changed files with 856 additions and 956 deletions

View file

@ -0,0 +1,22 @@
{ outputs, ... }:
{
imports = [
./nginx
];
services.lemmy = {
enable = true;
nginx.enable = true;
database.createLocally = true;
settings = {
hostname = "lemmy.${outputs.secrets.jimDomain}";
email = {
smtp_server = "mx.${outputs.secrets.jimDomain}:587";
smtp_login = "noreply@${outputs.secrets.jimDomain}";
smtp_from_address = "Jimbo's Lemmy <noreply@${outputs.secrets.jimDomain}>";
smtp_password = outputs.secrets.noreplyPassword;
tls_type = "starttls";
};
};
};
}