diff options
author | Silas Schöffel <sils@sils.li> | 2024-04-25 18:18:22 +0200 |
---|---|---|
committer | Silas Schöffel <sils@sils.li> | 2024-04-25 18:18:22 +0200 |
commit | bf49e564fc63f272a198f23cecf232185555fc9b (patch) | |
tree | af23e1063202b1a84d2956ca532a3e333f7db85f | |
parent | fix(mail): persist additional state directories (diff) | |
download | nixos-server-bf49e564fc63f272a198f23cecf232185555fc9b.tar.gz nixos-server-bf49e564fc63f272a198f23cecf232185555fc9b.zip |
fix(system/services/mastodon): change back to stable package
-rw-r--r-- | system/services/mastodon/default.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/system/services/mastodon/default.nix b/system/services/mastodon/default.nix index 160f2cf..34f579a 100644 --- a/system/services/mastodon/default.nix +++ b/system/services/mastodon/default.nix @@ -3,7 +3,11 @@ in { services.mastodon = { enable = true; - package = pkgs-unstable.mastodon; + + # Unstable Mastodon package, used if + #security updates aren't backported. + #package = pkgs-unstable.mastodon; + localDomain = "vhack.eu"; smtp = { authenticate = true; |