PipeWire: Difference between revisions

PipeWire is the default now
reflecting new default status
Line 8: Line 8:
As of [https://nixos.org/manual/nixos/stable/release-notes#sec-release-24.11 NixOS 24.11], PipeWire is the default sound server for most graphical sessions.
As of [https://nixos.org/manual/nixos/stable/release-notes#sec-release-24.11 NixOS 24.11], PipeWire is the default sound server for most graphical sessions.


==Enabling PipeWire==
==Configuring PipeWire==
PipeWire can be enabled with the following configuration:
 
<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">
   # rtkit is optional but recommended
   # rtkit is optional but recommended
   security.rtkit.enable = true;
   security.rtkit.enable = true;
   services.pipewire = {
   services.pipewire = {
     enable = true;
     enable = true; # if not already enabled
     alsa.enable = true;
     alsa.enable = true;
     alsa.support32Bit = true;
     alsa.support32Bit = true;