Compare commits

...

4 commits

Author SHA1 Message Date
Nick
024e647f83 feat: mastodon multi-user mode 2025-03-26 14:42:21 -05:00
Nick
d24606a288 feat: mastodon single-user mode 2025-03-26 14:40:53 -05:00
Nick
6deba0820b feat: mastodon multi-user mode 2025-03-26 14:16:57 -05:00
Nick
c099b1bfc3 feat: mastodon multi-user mode 2025-03-26 14:14:50 -05:00

View file

@ -26,17 +26,15 @@ in
# sudo mastodon-tootctl accounts modify username --remove-role
# nixpkgs.overlays = [
# (
# final: prev: {
# mastodon = prev.mastodon.overrideAttrs (oldAttrs: {
# postPatch =
# (oldAttrs.postPatch or "")
# + ''
# patch -p1 < ${./chars.patch}
# '';
# });
# }
# )
# (final: prev: {
# mastodon = prev.mastodon.overrideAttrs (oldAttrs: {
# postPatch =
# (oldAttrs.postPatch or "")
# + ''
# patch -p1 < ${./config/chars.patch}
# '';
# });
# })
# ];
services = {
@ -55,7 +53,7 @@ in
passwordFile = config.sops.secrets.mastodon-database.path;
};
extraConfig = {
SINGLE_USER_MODE = "true";
SINGLE_USER_MODE = "false";
SMTP_AUTH_METHOD = "plain";
SMTP_DELIVERY_METHOD = "smtp";
SMTP_ENABLE_STARTTLS_AUTO = "true";