Files
nixos-config/modules/hardware/bluetooth.nix
T
2026-06-01 17:45:01 +02:00

18 lines
286 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
];
}