From 6deba0820be0a7f8685a393902c6087d9f6d6eaa Mon Sep 17 00:00:00 2001 From: Nick Date: Wed, 26 Mar 2025 14:16:57 -0500 Subject: [PATCH] feat: mastodon multi-user mode --- modules/nixos/services/mastodon/default.nix | 22 ++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/modules/nixos/services/mastodon/default.nix b/modules/nixos/services/mastodon/default.nix index a52d03d..655a6f6 100755 --- a/modules/nixos/services/mastodon/default.nix +++ b/modules/nixos/services/mastodon/default.nix @@ -25,17 +25,17 @@ in # If you really fuck up and name yourself wrong, use this shit # 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} - ''; - }); - }) - ]; + # nixpkgs.overlays = [ + # (final: prev: { + # mastodon = prev.mastodon.overrideAttrs (oldAttrs: { + # postPatch = + # (oldAttrs.postPatch or "") + # + '' + # patch -p1 < ${./config/chars.patch} + # ''; + # }); + # }) + # ]; services = { mastodon = {