services: prololo: bump flake

This commit is contained in:
Antoine Martin 2021-09-16 16:23:52 +02:00
parent c80a5e9a87
commit 7bf83aaac3
4 changed files with 18 additions and 4 deletions

View file

@ -141,9 +141,22 @@ in
matrix_username = "prololo";
matrix_password = config.my.secrets.prololo_password;
matrix_homeserver = "https://matrix.alarsyo.net";
matrix_room_id = config.my.secrets.prololo_room;
matrix_state_dir = "./prololo_state_dir";
github_secret = config.my.secrets.prololo_github_secret;
matrix_rooms = {
test-room = { id = config.my.secrets.prololo_room; default = true; };
test-room2 = { id = config.my.secrets.prololo_room2; };
};
destinations = [
{
regex = "^prologin/.*-playground$";
room = "test-room2";
}
{
regex = "^prologin/.*-\\dplayground$";
room = "test-room2";
}
];
};
};