From 5f0934bf3988b4050a9188460fd65ac0995b1394 Mon Sep 17 00:00:00 2001 From: Tibo De Peuter Date: Fri, 10 Nov 2023 11:04:15 +0100 Subject: [PATCH] Power off bluetooth at boot --- nixos/hosts/Tibo-NixFat/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nixos/hosts/Tibo-NixFat/default.nix b/nixos/hosts/Tibo-NixFat/default.nix index b12b53d..33324b6 100644 --- a/nixos/hosts/Tibo-NixFat/default.nix +++ b/nixos/hosts/Tibo-NixFat/default.nix @@ -64,7 +64,10 @@ zsh.enable = true; }; - hardware.bluetooth.enable = true; + hardware.bluetooth = { + enable = true; + powerOnBoot = false; + }; networking.hostName = "Tibo-NixFat";