nix/hosts/laptop/modules/bluetooth.nix

14 lines
245 B
Nix
Raw Normal View History

2024-12-02 03:57:34 -07:00
{ ... }:
{
# Enable bluetooth
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
};
};
};
}