nix-config/users/willifan/graphical/hyprland/pipewire.nix
willifan 71225a8537 Revert "fix index audio"
This reverts commit 3af97a76d4.
2024-05-21 23:40:23 +02:00

13 lines
No EOL
292 B
Nix

{ pkgs, ... }:
{
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
wireplumber.enable = true;
# If you want to use JACK applications, uncomment this
#jack.enable = true;
};
}