summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorsils <sils@sils.li>2023-10-12 20:56:51 +0200
committersils <sils@sils.li>2023-10-12 20:56:51 +0200
commitb8f786bf568187f83da586df9e5d354e79b59cb2 (patch)
treed019d1911e7d1675e0b6e0a3ae92dd60f358e0f7
parentfeat(treewide): add mastodon (diff)
downloadnixos-server-b8f786bf568187f83da586df9e5d354e79b59cb2.tar.gz
nixos-server-b8f786bf568187f83da586df9e5d354e79b59cb2.zip
fix(system/services/mastodon): correct age secret path
-rw-r--r--system/services/mastodon/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/services/mastodon/default.nix b/system/services/mastodon/default.nix
index 6fb821e..3a983c3 100644
--- a/system/services/mastodon/default.nix
+++ b/system/services/mastodon/default.nix
@@ -11,7 +11,7 @@ in {
       fromAddress = emailAddress;
       user = emailAddress;
       host = "server1.vhack.eu";
-      passwordFile = "${config.age.secrets.mastdonMail.path}";
+      passwordFile = "${config.age.secrets.mastodonMail.path}";
     };
   };
 }