nixos/system/services/audio.nix

13 lines
270 B
Nix
Raw Normal View History

2024-12-04 16:27:03 +01:00
{ config, pkgs, ... }:
{
2024-12-04 16:15:54 +01:00
security.rtkit.enable = true;
2024-12-04 16:27:03 +01:00
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
# If you want to use JACK applications, uncomment this
#jack.enable = true;
};
}