Files
2026-01-19 15:06:32 +00:00

17 lines
308 B
Nix

{ config, pkgs, ... }:
{
# bluetooth for headphones
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;
};
}