h: update auto-redact-list

This commit is contained in:
Aaron Bieber 2022-08-26 11:17:27 -06:00
parent 9abc6f8914
commit 3dbe673628
No known key found for this signature in database
2 changed files with 8 additions and 8 deletions

View File

@ -386,9 +386,8 @@ in {
};
};
managementRoom = "#moderation:tapenet.org";
automaticallyRedactForReasons = [ "spam" "racism" "advertising" ];
automaticallyReactForReasons =
[ "spam" "advertising" "trolling" "racism" ];
automaticallyRedactForReasons =
[ "spam" "advertising" "racism" "nazi" "nazism" "trolling" "porn" ];
aditionalPrefixes = [ "hammer" ];
confirmWildcardBan = false;
};

View File

@ -1,9 +1,10 @@
{ config, lib, pkgs, isUnstable, ... }:
with pkgs; {
environment.systemPackages = with pkgs; [
#(callPackage ./cinny-desktop.nix { inherit isUnstable; })
#(callPackage ./mudita-center.nix { inherit isUnstable; })
(callPackage ./got.nix { inherit isUnstable; })
];
environment.systemPackages = with pkgs;
[
#(callPackage ./cinny-desktop.nix { inherit isUnstable; })
#(callPackage ./mudita-center.nix { inherit isUnstable; })
(callPackage ./got.nix { inherit isUnstable; })
];
}