29 lines
654 B
Nix
29 lines
654 B
Nix
{ 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 = "szia";
|
|
admin = "penge;dmk";
|
|
stereo = true;
|
|
when_nobody_in_channel = "pause_resume";
|
|
bitrate = 1300000;
|
|
};
|
|
|
|
commands.command_symbol = ".:@:;:4:!:1";
|
|
};
|
|
}
|