nix-config/modules/bluetooth/default.nix
2024-05-09 20:17:37 +02:00

8 lines
165 B
Nix

{ lib, config, ... }: lib.mkIf(config.withBluetooth) {
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
};
services.blueman.enable = true;
}