Difference between revisions of "Mumble"

From NixOS Wiki
Jump to: navigation, search
(simplify pulse override code)
m (add Software/Applications subcategory)
Line 10: Line 10:
 
}
 
}
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
 +
[[Category:Applications]]

Revision as of 06:11, 20 September 2021

PulseAudio Support

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

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