tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
bluetooth service: fix w.r.t. multiple outputs
Nikolay Amiantov
9 years ago
16bdef13
584d884b
+3
-3
1 changed file
expand all
collapse all
unified
split
nixos
modules
services
hardware
bluetooth.nix
+3
-3
nixos/modules/services/hardware/bluetooth.nix
···
9
9
serviceConfig = {
10
10
Type = "dbus";
11
11
BusName = "org.bluez";
12
12
-
ExecStart = "${bluez-bluetooth}/sbin/bluetoothd -n";
12
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
22
-
ExecStart = "${bluez-bluetooth}/sbin/bluetoothd -n";
22
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
35
-
ExecStart = "${bluez-bluetooth}/sbin/obexd";
35
35
+
ExecStart = "${getBin bluez-bluetooth}/bin/obexd";
36
36
};
37
37
};
38
38