dotfiles/nixos/modules/bluetooth.nix

12 lines
224 B
Nix
Raw Normal View History

2024-10-06 15:25:05 -05:00
{pkgs, ...}: {
hardware = {
bluetooth = {
enable = true;
package = pkgs.bluez;
powerOnBoot = true;
settings = {General = {Experimental = true;};};
disabledPlugins = ["sap"];
};
};
}