Difference between revisions of "Mumble"

From NixOS Wiki
Jump to: navigation, search
m (add Software/Applications subcategory)
m (rollback unauthorized mass edits)
Tag: Rollback
 
(One intermediate revision by one other user not shown)
(No difference)

Latest revision as of 11:00, 6 April 2024

PulseAudio Support

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

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