Files
nixos/modules/desktop/audio.nix
2026-06-19 05:47:33 +02:00

15 lines
276 B
Nix

{
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
services.blueman.enable = true;
}