From 285f461117bbee623193199494910d87666e632a Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Wed, 25 Sep 2024 19:09:40 +0000 Subject: [PATCH] Don't turn on bluetooth on boot. I'm having problems with the bluetooth working correctly when it starts, so instead I'm going to keep it off and try to manually manage it until I know what the process for getting it live. --- eshu/etc/nixos/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eshu/etc/nixos/configuration.nix b/eshu/etc/nixos/configuration.nix index 85418a6..4abe732 100644 --- a/eshu/etc/nixos/configuration.nix +++ b/eshu/etc/nixos/configuration.nix @@ -18,7 +18,7 @@ boot.loader.efi.canTouchEfiVariables = true; hardware.bluetooth.enable = true; - hardware.bluetooth.powerOnBoot = true; + hardware.bluetooth.powerOnBoot = false; hardware.xone.enable = true; # support for the xbox controller USB dongle home-manager.useGlobalPkgs = true;