nixos-configs/hosts/common/optional/bluetooth.nix
2025-07-02 17:25:32 -04:00

12 lines
161 B
Nix

{
config,
pkgs,
...
}: {
# Enable Bluetooth
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
};
services.blueman.enable = true;
}