nixos-config/modules/hardware/bluetooth.nix
Kabbone 0055fb07c4
add discord
add zmkBATx
remove 2in1screen
2025-05-22 22:21:01 +02: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
];
}