Mumble: Difference between revisions

From NixOS Wiki
imported>Nix
m (add Software/Applications subcategory)
m (added link to https://www.mumble.info/)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
= PulseAudio Support =
[https://www.mumble.info/ Mumble] is an open source voice chat application.
 
= Install client =
To install the Mumble client it is needed to install a package:
<syntaxHighlight lang=nix>
  environment.systemPackages = with pkgs; [
    mumble
  ];
</syntaxHighlight>
 
== PulseAudio Support ==
Add the following to your configuration.nix for [https://de.wikipedia.org/wiki/PulseAudio pulseaudio] support:
Add the following to your configuration.nix for [https://de.wikipedia.org/wiki/PulseAudio pulseaudio] support:


Line 10: Line 20:
}
}
</syntaxhighlight>
</syntaxhighlight>
= Install Murmur server =
Murmur is the server service for Mumble clients. It can be enabled and has several [https://search.nixos.org/options?query=murmur options] available.
<syntaxhighlight lang="nix">
  services.murmur = {
    enable = true;
    openFirewall = true;
  };
</syntaxhighlight>
The initial password for the user ''SuperUser'' is written in the ''slog'' table in the sqlite database: /var/lib/murmur/murmur.sqlite


[[Category:Applications]]
[[Category:Applications]]
[[Category:Gaming]]
[[Category:Server]]

Latest revision as of 17:55, 15 May 2024

Mumble is an open source voice chat application.

Install client

To install the Mumble client it is needed to install a package:

  environment.systemPackages = with pkgs; [
    mumble
  ];

PulseAudio Support

Add the following to your configuration.nix for pulseaudio support:

{ config, pkgs, ...}:
{
  environment.systemPackages = [
    (pkgs.mumble.override { pulseSupport = true; })
  ];
}

Install Murmur server

Murmur is the server service for Mumble clients. It can be enabled and has several options available.

  services.murmur = {
    enable = true;
    openFirewall = true;
  };

The initial password for the user SuperUser is written in the slog table in the sqlite database: /var/lib/murmur/murmur.sqlite