nix/modules/hardware/bluetooth/default.nix

14 lines
222 B
Nix
Raw Normal View History

2024-10-04 18:30:45 +02:00
{
2024-11-24 20:15:38 +01:00
lib,
config,
...
}: {
options = {
bluetooth.enable = lib.mkEnableOption "";
};
config = lib.mkIf config.bluetooth.enable {
services.blueman.enable = true;
hardware.bluetooth.enable = true;
};
2024-08-31 16:04:57 +02:00
}