Mumble

From NixOS Wiki
Revision as of 12:46, 25 March 2020 by Vdot0x23 (talk | contribs) (added how to have pulseaudio support for mumble)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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