nix/hosts/laptop/modules/bluetooth.nix
2024-12-02 06:52:33 -07:00

14 lines
No EOL
245 B
Nix

{ ... }:
{
# Enable bluetooth
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
};
};
};
}