Mumble

From NixOS Wiki
Revision as of 06:11, 20 September 2021 by imported>Nix (add Software/Applications subcategory)

PulseAudio Support

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

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