diff --git a/modules/bluetooth.nix b/modules/bluetooth.nix index 3dac4a1..b0f12a3 100644 --- a/modules/bluetooth.nix +++ b/modules/bluetooth.nix @@ -1,3 +1,15 @@ { - hardware.bluetooth.enable = true; + hardware.bluetooth = { + enable = true; + powerOnBoot = true; + settings = { + General = { + Experimental = true; + FastConnectable = true; + }; + Policy = { + AutoEnable = true; + }; + }; + }; }