aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--modules/nixos/vhack/peertube/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/modules/nixos/vhack/peertube/default.nix b/modules/nixos/vhack/peertube/default.nix
index df54336..aaf3cd1 100644
--- a/modules/nixos/vhack/peertube/default.nix
+++ b/modules/nixos/vhack/peertube/default.nix
@@ -1,6 +1,7 @@
{
config,
lib,
+ pkgs,
...
}: let
cfg = config.vhack.peertube;
@@ -31,6 +32,22 @@ in {
};
secrets.secretsFile = "${config.age.secrets.peertubeGeneral.path}";
+
+ settings = {
+ smtp = let
+ emailAddress = "peertube@vhack.eu";
+ in {
+ sendmail = "${pkgs.postfix}/bin/sendmail";
+
+ transport = "sendmail";
+ hostname = "server1.vhack.eu";
+ port = 587;
+ username = emailAddress;
+ tls = true;
+ disable_starttls = true;
+ from_address = emailAddress;
+ };
+ };
};
# The `configureNginx` option does not do this for some reason