From 65515b37ba50085bbc0c50bfa06e491362e5cc0f Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Thu, 26 Feb 2026 14:54:27 -0500 Subject: bluetooth firmware --- system/bluetooth.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/system/bluetooth.nix b/system/bluetooth.nix index 7043cc3..06768b5 100644 --- a/system/bluetooth.nix +++ b/system/bluetooth.nix @@ -1,6 +1,7 @@ { lib, config, + pkgs, ... }: let inherit (lib) mkIf; @@ -9,5 +10,8 @@ in { hardware.bluetooth.enable = true; services.blueman.enable = true; users.groups.bluetooth.members = [config.user]; + + hardware.firmware = [ pkgs.broadcom-bt-firmware ]; + unfreePackages = [ "broadcom-bt-firmware" ]; }; } -- cgit v1.2.3-freya