nixos-config/hosts/katana/bluetooth.nix
2023-10-16 01:34:40 -04:00

13 lines
No EOL
329 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";
};
};
};
services.blueman.enable = true;
}