Mumble: Difference between revisions
imported>Nix m add Software/Applications subcategory |
added beginning sentence. Added to Gaming Category |
||
Line 1: | Line 1: | ||
Mumble is a voice chat application. | |||
= Install = | |||
<syntaxHighlight lang=nix> | |||
environment.systemPackages = with pkgs; [ | |||
mumble | |||
]; | |||
</syntaxHighlight> | |||
= PulseAudio Support = | = PulseAudio Support = | ||
Add the following to your configuration.nix for [https://de.wikipedia.org/wiki/PulseAudio pulseaudio] support: | Add the following to your configuration.nix for [https://de.wikipedia.org/wiki/PulseAudio pulseaudio] support: | ||
Line 12: | Line 21: | ||
[[Category:Applications]] | [[Category:Applications]] | ||
[[Category:Gaming]] |
Revision as of 16:32, 19 April 2024
Mumble is a voice chat application.
Install
environment.systemPackages = with pkgs; [
mumble
];
PulseAudio Support
Add the following to your configuration.nix for pulseaudio support:
{ config, pkgs, ...}:
{
environment.systemPackages = [
(pkgs.mumble.override { pulseSupport = true; })
];
}