Files
nixos-config/modules/hardware/bluetooth.nix
2026-02-28 09:17:03 +01:00

21 lines
298 B
Nix

#
# Bluetooth
#
{ pkgs, ... }:
{
hardware.bluetooth = {
enable = true;
hsphfpd.enable = false; # HSP & HFP daemon
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
};
};
};
environment.systemPackages = with pkgs; [
zmkBATx
];
}