Change ssh port + prepare forgejo mailer

This commit is contained in:
hodasemi 2025-06-03 15:16:17 +02:00
parent 8f55c151c5
commit 15996ec780
2 changed files with 7 additions and 1 deletions

View file

@ -57,6 +57,12 @@ in
ENABLED = true;
DEFAULT_ACTIONS_URL = "github";
};
mailer = {
ENABLED = true;
SMTP_ADDR = "TODO";
FROM = "noreply@${srv.DOMAIN}";
USER = "noreply@${srv.DOMAIN}";
};
};
dump = {
enable = true;

View file

@ -8,7 +8,7 @@
openssh = {
enable = true;
ports = [ 23 ];
ports = [ 54222 ];
settings = {
AllowUsers = [ "dev" "root" ];
};