nix-config/nixos/_mixins/services/bluetooth.nix

14 lines
228 B
Nix
Raw Permalink Normal View History

{ pkgs, ... }:
{
# https://nixos.wiki/wiki/Bluetooth
hardware.bluetooth = {
enable = true;
2024-03-07 22:09:39 +00:00
package = pkgs.bluez;
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
};
};
};
}