在 NixOS 上使用 blueman 来配对蓝牙设备(耳机),我只得到没有名称的 MAC 地址列表。例如,我期待看到 Apple EarPods,但没有看到任何名称。
~ bluetoothctl
Agent registered
[bluetooth]# scan on
Discovery started
[CHG] Controller 18:56:80:00:AC:92 Discovering: yes
[NEW] Device 70:83:4A:D3:D1:60 70-83-4A-D3-D1-60
...
当我检查时journalctl -eu bluetooth
:
Oct 31 09:15:21 nixos bluetoothd[27637]: RFCOMM server failed for ...: rfcomm_bind: Address already in use (98)
我认为这与在它已经运行时打开它有关blueman-applet
,而不是主要问题。
我的 NixOS 配置包括:
services.dbus.packages = [ pkgs.blueman ];
services.blueman.enable = true;
如何查找蓝牙设备名称,或者至少开始调试?