Compare commits

..

No commits in common. "7eee8fc5f4e219215bb962f084f3e8b5f7766cbd" and "a8b165e9573e68cc69d6ca6c742949cfe4d81ddb" have entirely different histories.

View file

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