2023-11-04 18:14:42 +08:00
|
|
|
{pkgs, ...}:
|
2023-09-19 08:17:43 +08:00
|
|
|
# Bluetooth
|
|
|
|
{
|
|
|
|
# Bluetooth manager
|
|
|
|
#services.blueman.enable = true;
|
2023-11-04 18:14:42 +08:00
|
|
|
environment.systemPackages = with pkgs; [blueberry];
|
2023-09-19 08:17:43 +08:00
|
|
|
|
|
|
|
# Bluetooth service
|
|
|
|
hardware.bluetooth = {
|
|
|
|
enable = true;
|
|
|
|
settings.General.FastConnectable = true;
|
|
|
|
};
|
|
|
|
}
|