summary refs log tree commit diff stats
path: root/system/services
diff options
context:
space:
mode:
authorsils <sils@sils.li>2024-02-15 20:01:06 +0100
committersils <sils@sils.li>2024-02-15 20:14:52 +0100
commit37f71c496d816aa42f7cf1c7a8924e3914533740 (patch)
tree78e3144ea4a0dd021dc092bf14201bf9a0e8b601 /system/services
parentchore(version): v0.23.0 (diff)
downloadnixos-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 'system/services')
-rw-r--r--system/services/mastodon/default.nix3
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;