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