Make my headset reconnect on login
diff --git a/modules/bluetooth.nix b/modules/bluetooth.nix
index 33c1406..8bdf802 100644
--- a/modules/bluetooth.nix
+++ b/modules/bluetooth.nix
@@ -6,4 +6,10 @@
     };
     environment.persistence."/nix/persist".directories = [ "/var/lib/bluetooth" ];
   };
+  home = {
+    home.file.".config/prelaunch/bluetooth-reconnect.sh".text = ''
+      bluetoothctl connect E8:EE:CC:04:84:5F
+    '';
+    home.file.".config/prelaunch/bluetooth-reconnect.sh".executable = true;
+  };
 }