mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 01:44:40 +02:00
48 lines
1.2 KiB
Nix
48 lines
1.2 KiB
Nix
# Have a good quality voice chat
|
|
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.my.services.mumble-server;
|
|
domain = "voice.${config.networking.domain}";
|
|
in
|
|
{
|
|
options.my.services.mumble-server = {
|
|
enable = lib.mkEnableOption "RSS-Bridge service";
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
services.murmur = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
welcometext = "Welcome to the Mumble-Server!";
|
|
sslCert = "/var/lib/acme/${domain}/fullchain.pem";
|
|
sslKey = "/var/lib/acme/${domain}/key.pem";
|
|
};
|
|
|
|
services.nginx.virtualHosts.${domain}.enableACME = true;
|
|
security.acme.certs."${domain}" = {
|
|
group = "voice-buehler-rocks";
|
|
postRun = ''
|
|
if ${pkgs.systemd}/bin/systemctl is-active murmur.service; then
|
|
${pkgs.systemd}/bin/systemctl kill -s SIGUSR1 murmur.service
|
|
fi
|
|
'';
|
|
};
|
|
|
|
users.groups."voice-buehler-rocks".members = [
|
|
"murmur"
|
|
"nginx"
|
|
];
|
|
|
|
my.services.prometheus.rules = {
|
|
mumble_not_running = {
|
|
condition = ''systemd_unit_state{name="murmur.service", state!="active"} > 0'';
|
|
description = "{{$labels.host}} should have a running {{$labels.name}}";
|
|
};
|
|
};
|
|
};
|
|
}
|