From bf11a28bd3abc5fdd6e830bceff7dd06daa72d73 Mon Sep 17 00:00:00 2001
From: Peter Hoeg <peter@hoeg.com>
Date: Wed, 17 Feb 2021 13:35:43 +0800
Subject: [PATCH] nixos/bluetooth: hotfix for stupidity

---
 nixos/modules/services/hardware/bluetooth.nix | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nixos/modules/services/hardware/bluetooth.nix b/nixos/modules/services/hardware/bluetooth.nix
index 02c03136f3a..da36ae68b3f 100644
--- a/nixos/modules/services/hardware/bluetooth.nix
+++ b/nixos/modules/services/hardware/bluetooth.nix
@@ -113,7 +113,7 @@ in
           aliases = [ "dbus-org.bluez.service" ];
           serviceConfig.ExecStart = [
             ""
-            "${package}/libexec/bluetooth/bluetoothd ${escapeShellArgs " " args}"
+            "${package}/libexec/bluetooth/bluetoothd ${escapeShellArgs args}"
           ];
           # restarting can leave people without a mouse/keyboard
           unitConfig.X-RestartIfChanged = false;