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

8 lines
219 B
Nix
Raw Normal View History

2024-10-20 16:21:47 +02:00
{config, pkgs, ...}: {
2024-11-01 18:03:42 +01:00
hardware.bluetooth = {
enable = true; # enables support for Bluetooth
powerOnBoot = true; # powers up the default Bluetooth controller on boot
2024-10-22 10:54:12 +02:00
};
2024-10-20 16:21:47 +02:00
services.blueman.enable = true;
}