PulseAudio: Difference between revisions

imported>HLandau
mNo edit summary
imported>Gleber
Enabling PulseAudio: Use nixos configuration.nix to add user to audio group instead of `usermod` command
Line 11: Line 11:
You may need to add users to the <tt>audio</tt> group for them to be able to use audio devices:
You may need to add users to the <tt>audio</tt> group for them to be able to use audio devices:


  $ sudo usermod -a -G audio <em>username</em>
<syntaxHighlight lang="nix">
users.extraUsers.alice.extraGroups = [ "audio" ... ];
</syntaxHighlight>


==Troubleshooting PulseAudio==
==Troubleshooting PulseAudio==