Compare commits

...

2 commits

View file

@ -10,7 +10,7 @@ in
];
services.matrix-appservice-discord = {
enable = true;
enable = false;
settings = {
auth = {
usePrivilegedIntents = true; # typing status and stuff
@ -22,6 +22,7 @@ in
disablePresence = true;
disableTypingNotifications = true;
};
inactiveAfterDays = 14;
# logging.console = "silly";
};
serviceDependencies = [ "matrix-synapse.target" ];
@ -30,4 +31,6 @@ in
package = pkgs.matrix-appservice-discord;
environmentFile = config.age.secrets.matrix_discord_bridge_token.path;
};
environment.systemPackages = with pkgs; [ matrix-appservice-discord ];
}