From 54caac86b360c7b09e81063b4206721b3a0725a0 Mon Sep 17 00:00:00 2001 From: Nick Date: Sat, 23 Nov 2024 20:53:15 -0600 Subject: [PATCH] feat: server test --- nixos/modules/services/mastodon/default.nix | 26 ++++++++++----------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/nixos/modules/services/mastodon/default.nix b/nixos/modules/services/mastodon/default.nix index 029e977..74f8c64 100755 --- a/nixos/modules/services/mastodon/default.nix +++ b/nixos/modules/services/mastodon/default.nix @@ -21,19 +21,19 @@ 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 < ${./chars.patch} - ''; - }); - } - ) - ]; + # nixpkgs.overlays = [ + # ( + # final: prev: { + # mastodon = prev.mastodon.overrideAttrs (oldAttrs: { + # postPatch = + # (oldAttrs.postPatch or "") + # + '' + # patch -p1 < ${./chars.patch} + # ''; + # }); + # } + # ) + # ]; services = { mastodon = {