This repository has been archived on 2024-08-30. You can view files and clone it, but cannot push or open issues or pull requests.
infrastructure/hosts/lime/services/mumble.nix

29 lines
689 B
Nix
Raw Permalink Normal View History

2024-05-29 17:15:20 +02:00
{ pkgs, ... }: {
#
services.murmur = {
enable = true;
openFirewall = true;
bandwidth = 1300000;
welcometext = ''<b><span style=" color: #fad000">Welcome to 4o1x5.dev server<br/>Enjoy your stay.</span></b>'';
};
# Musicbot
services.botamusique.enable = true;
services.botamusique.settings = {
server = {
certificate = "/etc/botamusique.pem";
};
bot = {
channel = "/music";
name = "Zenebona";
comment = "Bassza meg az MSZP, csak a FIDESZ";
2024-05-29 17:15:20 +02:00
admin = "penge;dmk";
stereo = true;
when_nobody_in_channel = "pause_resume";
bitrate = 1300000;
};
commands.command_symbol = ".:@:;:4:!:1:,:':2";
2024-05-29 17:15:20 +02:00
};
}