Enable mumble server
All checks were successful
Cachix / build (elendel) (push) Successful in 1m44s
Cachix / build (kholinar) (push) Successful in 2m21s
Cachix / build (marabethia) (push) Successful in 1m58s

This commit is contained in:
Charlotte Van Petegem 2025-03-26 20:55:26 +01:00
parent c43c5ccdcb
commit 2368267e90
Signed by: chvp
SSH key fingerprint: SHA256:s9rb8jBVfdahqWHuBAcHCBP1wmj4eYQXZfqgz4H3E9E
6 changed files with 39 additions and 0 deletions

View file

@ -8,6 +8,7 @@
./git
./mail
./matrix
./mumble
./nextcloud
./nginx
./torrents

View file

@ -0,0 +1,21 @@
{ config, pkgs, lib, ... }:
{
options.chvp.services.mumble.enable = lib.mkOption {
default = false;
example = true;
};
config = lib.mkIf config.chvp.services.mumble.enable {
services.murmur = {
enable = true;
openFirewall = true;
password = "$MURMURD_PASSWORD";
};
age.secrets."passwords/services/murmur" = {
file = ../../../../secrets/passwords/services/murmur.age;
owner = "murmur";
};
};
}