aboutsummaryrefslogtreecommitdiffstats
path: root/system/services
diff options
context:
space:
mode:
authorsils <sils@sils.li>2023-10-12 20:49:27 +0200
committersils <sils@sils.li>2023-10-12 20:49:27 +0200
commit631e9c0fc66e7c0493ea447dfcfcfca93ce0d72c (patch)
treedc4b8458023b7b459f1624c42dd8c3a5cf52470f /system/services
parentbuild(flake): update (diff)
downloadnixos-server-631e9c0fc66e7c0493ea447dfcfcfca93ce0d72c.zip
feat(treewide): add mastodon
Diffstat (limited to '')
-rw-r--r--system/services/mail/users.nixbin1138 -> 1303 bytes
-rw-r--r--system/services/mastodon/default.nix17
2 files changed, 17 insertions, 0 deletions
diff --git a/system/services/mail/users.nix b/system/services/mail/users.nix
index a30d547..2104a8a 100644
--- a/system/services/mail/users.nix
+++ b/system/services/mail/users.nix
Binary files differ
diff --git a/system/services/mastodon/default.nix b/system/services/mastodon/default.nix
new file mode 100644
index 0000000..6fb821e
--- /dev/null
+++ b/system/services/mastodon/default.nix
@@ -0,0 +1,17 @@
+{config, ...}: let
+ emailAddress = "mastodon@vhack.eu";
+in {
+ services.mastodon = {
+ enable = true;
+ localDomain = "mstdn.vhack.eu";
+ configureNginx = true;
+ smtp = {
+ authenticate = true;
+ createLocally = false;
+ fromAddress = emailAddress;
+ user = emailAddress;
+ host = "server1.vhack.eu";
+ passwordFile = "${config.age.secrets.mastdonMail.path}";
+ };
+ };
+}