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

14 lines
232 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
# https://nixos.wiki/wiki/Bluetooth
hardware.bluetooth = {
enable = true;
package = pkgs.bluezFull;
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
};
};
};
}