Files
nixos-flake/modules/hardware/audio.nix
T
2026-01-18 10:04:50 +01:00

18 lines
340 B
Nix

{ config, pkgs, ... }:
{
# bluetooth for headphones
services.bluez.enable = true;
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = false;
# enable pipewire
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
jack.enable = false;
};
}