Enable experimental bluetooth features
diff --git a/modules/bluetooth.nix b/modules/bluetooth.nix
index c8432ea..33c1406 100644
--- a/modules/bluetooth.nix
+++ b/modules/bluetooth.nix
@@ -1,6 +1,9 @@
 {
   config = {
     hardware.bluetooth.enable = true;
+    hardware.bluetooth.settings = {
+      General.Experimental = true;
+    };
     environment.persistence."/nix/persist".directories = [ "/var/lib/bluetooth" ];
   };
 }