diff --git a/modules/services/hardware/bluetooth.nix b/modules/services/hardware/bluetooth.nix index 06ed9ef70a4..6bc0ad0bf77 100644 --- a/modules/services/hardware/bluetooth.nix +++ b/modules/services/hardware/bluetooth.nix @@ -26,6 +26,16 @@ with pkgs.lib; services.dbus.packages = [ pkgs.bluez ]; + systemd.services."dbus-org.bluez" = { + description = "Bluetooth service"; + serviceConfig = { + Type = "dbus"; + BusName = "org.bluez"; + ExecStart = "${pkgs.bluez}/sbin/bluetoothd -n"; + }; + wantedBy = [ "bluetooth.target" ]; + }; + }; }