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