nix/hosts/laptop/config/bluetooth.nix

14 lines
No EOL
245 B
Nix

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