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

14 lines
312 B
Nix
Raw Normal View History

2022-06-22 20:09:30 +02:00
{ 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";
};
};
};
}