bluetooth service: fix w.r.t. multiple outputs

+3 -3
+3 -3
nixos/modules/services/hardware/bluetooth.nix
··· 9 9 serviceConfig = { 10 10 Type = "dbus"; 11 11 BusName = "org.bluez"; 12 - ExecStart = "${bluez-bluetooth}/sbin/bluetoothd -n"; 12 + ExecStart = "${getBin bluez-bluetooth}/bin/bluetoothd -n"; 13 13 }; 14 14 wantedBy = [ "bluetooth.target" ]; 15 15 }; ··· 19 19 serviceConfig = { 20 20 Type = "dbus"; 21 21 BusName = "org.bluez"; 22 - ExecStart = "${bluez-bluetooth}/sbin/bluetoothd -n"; 22 + ExecStart = "${getBin bluez-bluetooth}/bin/bluetoothd -n"; 23 23 NotifyAccess="main"; 24 24 CapabilityBoundingSet="CAP_NET_ADMIN CAP_NET_BIND_SERVICE"; 25 25 LimitNPROC=1; ··· 32 32 serviceConfig = { 33 33 Type = "dbus"; 34 34 BusName = "org.bluez.obex"; 35 - ExecStart = "${bluez-bluetooth}/sbin/obexd"; 35 + ExecStart = "${getBin bluez-bluetooth}/bin/obexd"; 36 36 }; 37 37 }; 38 38