diff options
| -rw-r--r-- | system/bluetooth.nix | 4 |
1 files changed, 4 insertions, 0 deletions
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" ]; }; } |