Mumble: Difference between revisions

From NixOS Wiki
imported>Mic92
(simplify pulse override code)
imported>Nix
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; })
  ];
}