1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

feat(matterbridge): bridge mumble and move to makanek

This commit is contained in:
2020-11-18 00:07:28 +01:00
parent bcb5949e15
commit d5cdbf3795
3 changed files with 21 additions and 2 deletions

View File

@@ -11,6 +11,11 @@ let
Server = "irc.freenode.net:6667"; Server = "irc.freenode.net:6667";
Nick = "tg_bridge"; Nick = "tg_bridge";
}; };
mumble.lassulus = {
Server = "lassul.us:64738";
Nick = "krebs_bridge";
SkipTLSVerify = true;
};
gateway = [ gateway = [
{ {
name = "krebs-bridge"; name = "krebs-bridge";
@@ -24,6 +29,10 @@ let
account = "telegram.kmein"; account = "telegram.kmein";
channel = "-330372458"; channel = "-330372458";
} }
{
account = "mumble.lassulus";
channel = 6; # "nixos"
}
]; ];
} }
{ {
@@ -44,7 +53,17 @@ let
}; };
in in
{ {
nixpkgs.overlays = [ (import <niveum/overlays/toml.nix>) ]; nixpkgs.overlays = [
(import <niveum/overlays/toml.nix>)
(self: super: {
matterbridge = (import (super.fetchFromGitHub {
owner = "NixOS";
repo = "nixpkgs";
rev = "e45d91ee65db293a172ec506759d1248e40c35f5";
sha256 = "03cjs5xcx09lw0djyrx2kfakw7gkg4iqmy9w25azai62im39l30k";
}) {}).matterbridge;
})
];
services.matterbridge = { services.matterbridge = {
enable = true; enable = true;

View File

@@ -13,6 +13,7 @@ in
<niveum/configs/version.nix> <niveum/configs/version.nix>
<niveum/configs/urlwatch.nix> <niveum/configs/urlwatch.nix>
<niveum/configs/gitea.nix> <niveum/configs/gitea.nix>
<niveum/configs/matterbridge.nix>
<niveum/modules/retiolum.nix> <niveum/modules/retiolum.nix>
]; ];

View File

@@ -15,7 +15,6 @@ in {
<niveum/configs/tmux.nix> <niveum/configs/tmux.nix>
<niveum/configs/version.nix> <niveum/configs/version.nix>
<niveum/configs/traadfri.nix> <niveum/configs/traadfri.nix>
<niveum/configs/matterbridge.nix>
<niveum/modules/retiolum.nix> <niveum/modules/retiolum.nix>
<niveum/modules/telegram-bot.nix> <niveum/modules/telegram-bot.nix>
{ {