diff --git a/git_system.nix b/git_system.nix index 9b7157a..504b43e 100644 --- a/git_system.nix +++ b/git_system.nix @@ -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; diff --git a/shared/ssh.nix b/shared/ssh.nix index 912d76e..fd93f2b 100644 --- a/shared/ssh.nix +++ b/shared/ssh.nix @@ -8,7 +8,7 @@ openssh = { enable = true; - ports = [ 23 ]; + ports = [ 54222 ]; settings = { AllowUsers = [ "dev" "root" ]; };