nix-config/hosts/goober/features/hardware/bluetooth.nix
2024-11-01 18:16:26 +01:00

8 lines
219 B
Nix

{config, pkgs, ...}: {
hardware.bluetooth = {
enable = true; # enables support for Bluetooth
powerOnBoot = true; # powers up the default Bluetooth controller on boot
};
services.blueman.enable = true;
}