Mumble
PulseAudio Support
Add the following snippet to a file, for instance mumble.nix
{ config, pkgs, ...}:
{
nixpkgs.config = {
packageOverrides = super: let self = super.pkgs; in {
mumble = super.mumble.override { pulseSupport = true; };
};
};
}
and add to imports in configuration.nix, for instance as shown below
imports =
[
./mumble.nix
];