Files
nixos-config/modules/hardware/bluetooth.nix
2026-04-26 10:27:50 +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
];
}