nix-dotfiles/hosts/tsuki/services/matrix/bridges/matrix-appservice-irc.nix

14 lines
312 B
Nix

{ secrets, ... }:
{
services.matrix-appservice-irc = {
enable = true;
settings = {
database = {
engine = "postgres";
connectionString = "postgres://matrix-appservice-irc:@localhost:${toString secrets.ports.postgres}/matrix-appservice-irc?sslmode=disable";
};
};
};
}