From b500cc84004220dc51945df2cf2e56298cef3596 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sun, 27 Oct 2024 18:11:23 -0500 Subject: [PATCH] feat(hosts/orion): enable bluetooth on boot --- hosts/orion/modules/bluetooth.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/hosts/orion/modules/bluetooth.nix b/hosts/orion/modules/bluetooth.nix index e589a58b..db056504 100644 --- a/hosts/orion/modules/bluetooth.nix +++ b/hosts/orion/modules/bluetooth.nix @@ -1,12 +1,13 @@ { - inputs, - lib, pkgs, ... }: { - hardware.bluetooth.enable = true; + hardware.bluetooth = { + enable = true; + powerOnBoot = true; + }; services.blueman.enable = true; environment.systemPackages = with pkgs; [ bluez ];