Mumble

From NixOS Wiki
Revision as of 16:32, 19 April 2024 by Klinger (talk | contribs) (added beginning sentence. Added to Gaming Category)

Mumble is a voice chat application.

Install

  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; })
  ];
}