Mumble: Difference between revisions
imported>Vdot0x23 added how to have pulseaudio support for mumble |
imported>Mic92 simplify pulse override code |
||
Line 1: | Line 1: | ||
= PulseAudio Support = | = PulseAudio Support = | ||
Add the following | Add the following to your configuration.nix for [https://de.wikipedia.org/wiki/PulseAudio pulseaudio] support: | ||
<syntaxhighlight lang="nix"> | <syntaxhighlight lang="nix"> | ||
{ config, pkgs, ...}: | { config, pkgs, ...}: | ||
{ | { | ||
environment.systemPackages = [ | |||
(pkgs.mumble.override { pulseSupport = true; }) | |||
]; | |||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 14:45, 25 March 2020
PulseAudio Support
Add the following to your configuration.nix for pulseaudio support:
{ config, pkgs, ...}:
{
environment.systemPackages = [
(pkgs.mumble.override { pulseSupport = true; })
];
}