Home Explore Blog CI



nixpkgs

nixos/modules/services/networking/umurmur.md
bf99637b89c2647a24f5b57dc7c355f207e7429c1dbb2b5c000000030000032c
# uMurmur {#module-service-umurmur}

[uMurmur](http://umurmur.net/) is a minimalistic Mumble server primarily targeted to run on embedded computers. This module enables it (`umurmurd`).

## Quick Start {#module-service-umurmur-quick-start}

```nix
{
  services.umurmur = {
    enable = true;
    openFirewall = true;
    settings = {
      port = 7365;
      channels = [
        {
          name = "root";
          parent = "";
          description = "Root channel. No entry.";
          noenter = true;
        }
        {
          name = "lobby";
          parent = "root";
          description = "Lobby channel";
        }
      ];
      default_channel = "lobby";
    };
  };
}
```

See a full configuration in [umurmur.conf.example](https://github.com/umurmur/umurmur/blob/master/umurmur.conf.example)

Chunks
3a9c1754 (1st chunk of `nixos/modules/services/networking/umurmur.md`)
Title: uMurmur Module for NixOS
Summary
This section describes the uMurmur module for NixOS, which allows you to run a minimalistic Mumble server. It provides a quick start example with configuration options for enabling the service, opening the firewall, setting the port, defining channels (root and lobby), and setting the default channel. It also links to a full configuration example.