Skip to content

Commit

Permalink
style change
Browse files Browse the repository at this point in the history
  • Loading branch information
mightyiam committed Jan 3, 2025
1 parent 33e59e3 commit 860450b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions nixos-modules/pipewire.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
{
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire.enable = true;
services.pipewire.alsa.enable = true;
services.pipewire.alsa.support32Bit = true;
services.pipewire.pulse.enable = true;
services.pipewire = {
enable = true;
alsa = {
enable = true;
support32Bit = true;
};
pulse.enable = true;
};
}

0 comments on commit 860450b

Please sign in to comment.