From c03f5c66e506e51fadf96ec92b7b375bdd619a60 Mon Sep 17 00:00:00 2001 From: arunoruto Date: Thu, 27 Jun 2024 10:52:55 +0200 Subject: [PATCH] Kyuubi bluetooth experimental settings --- nixos/hosts/kyuubi/configuration.nix | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/nixos/hosts/kyuubi/configuration.nix b/nixos/hosts/kyuubi/configuration.nix index 7eb470e..7d0f1d2 100644 --- a/nixos/hosts/kyuubi/configuration.nix +++ b/nixos/hosts/kyuubi/configuration.nix @@ -56,13 +56,17 @@ in { }; # Tweaks for keychron - bluetooth.settings = { - General = { - FastConnect = true; - }; - Policy = { - ReconnectAttempts = 7; - ReconnectIntervals = "1, 2, 3"; + bluetooth = { + enable = true; + settings = { + General = { + FastConnect = true; + Experimental = true; + }; + Policy = { + ReconnectAttempts = 7; + ReconnectIntervals = "1, 2, 3"; + }; }; }; };