Commit edbd2e489a25

Vincent Demeester <vincent@sbr.pm>
2026-02-12 13:46:53
feat(bluetooth): enabled power on boot and auto repairing
Added powerOnBoot and JustWorksRepairing for input devices like the eyelash corne that use no-PIN pairing.
1 parent 4b2e2a2
Changed files (1)
systems
common
systems/common/hardware/bluetooth.nix
@@ -7,10 +7,14 @@
   hardware.bluetooth = {
     enable = true;
     package = pkgs.bluez;
+    powerOnBoot = true;
     settings = {
       General = {
         Experimental = true;
         KernelExperimental = true;
+        # Auto-accept pairing for input devices (e.g., ZMK keyboards)
+        # that have no display or input for PIN confirmation
+        JustWorksRepairing = "always";
       };
     };
   };