diff options
author | sils <sils@sils.li> | 2023-10-12 20:56:51 +0200 |
---|---|---|
committer | sils <sils@sils.li> | 2023-10-12 20:56:51 +0200 |
commit | b8f786bf568187f83da586df9e5d354e79b59cb2 (patch) | |
tree | d019d1911e7d1675e0b6e0a3ae92dd60f358e0f7 | |
parent | feat(treewide): add mastodon (diff) | |
download | nixos-server-b8f786bf568187f83da586df9e5d354e79b59cb2.tar.gz nixos-server-b8f786bf568187f83da586df9e5d354e79b59cb2.zip |
fix(system/services/mastodon): correct age secret path
-rw-r--r-- | system/services/mastodon/default.nix | 2 |
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}"; }; }; } |