nix-config/nixos/_mixins/services/bluetooth.nix
Gregory Burd 86706b1fc7 wimpy-ified
inspired by wimpysworld nix-config
2023-09-25 14:05:07 -04:00

14 lines
232 B
Nix

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