PulseAudio: Difference between revisions

imported>Gleber
Enabling PulseAudio: Use nixos configuration.nix to add user to audio group instead of `usermod` command
imported>Makefu
No edit summary
Line 38: Line 38:
<syntaxHighlight lang="nix">
<syntaxHighlight lang="nix">
nixpkgs.config.pulseaudio = true;
nixpkgs.config.pulseaudio = true;
</syntaxHighlight>
== Using Pulseaudio Equalizer ==
Currently (2017-11-29 {{issue|8384}}) the <code>qpaeq</code> command does not work out of the box, use the following commands to get it running:
<syntaxHighlight lang=console>
$ pactl load-module module-equalizer-sink
$ pactl load-module module-dbus-protocol
$ nix-shell -p python27Full python27Packages.pyqt4 python27Packages.dbus --command qpaeq
</syntaxHighlight>
</syntaxHighlight>