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
|
|
|
}
|