nix-config/hosts/goober/features/hardware/bluetooth.nix

16 lines
346 B
Nix

{ config, pkgs, ... }:
{
hardware.bluetooth = {
enable = true; # enables support for Bluetooth
powerOnBoot = true; # powers up the default Bluetooth controller on boot
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
Experimental = true;
};
};
};
services.blueman.enable = true;
}