diff options
author | sils <sils@sils.li> | 2024-02-15 20:01:06 +0100 |
---|---|---|
committer | sils <sils@sils.li> | 2024-02-15 20:14:52 +0100 |
commit | 37f71c496d816aa42f7cf1c7a8924e3914533740 (patch) | |
tree | 78e3144ea4a0dd021dc092bf14201bf9a0e8b601 /system/services | |
parent | chore(version): v0.23.0 (diff) | |
download | nixos-server-37f71c496d816aa42f7cf1c7a8924e3914533740.tar.gz nixos-server-37f71c496d816aa42f7cf1c7a8924e3914533740.zip |
fix: update mastodon
This uses the mastodon package from nixos-unstable-small because backporting of a security release failed and we can't afford to wait.
Diffstat (limited to '')
-rw-r--r-- | system/services/mastodon/default.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/system/services/mastodon/default.nix b/system/services/mastodon/default.nix index cb53c60..160f2cf 100644 --- a/system/services/mastodon/default.nix +++ b/system/services/mastodon/default.nix @@ -1,8 +1,9 @@ -{config, ...}: let +{config, pkgs-unstable, ...}: let emailAddress = "mastodon@vhack.eu"; in { services.mastodon = { enable = true; + package = pkgs-unstable.mastodon; localDomain = "vhack.eu"; smtp = { authenticate = true; |