diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-02-26 14:54:27 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-02-26 14:54:27 -0500 |
| commit | 65515b37ba50085bbc0c50bfa06e491362e5cc0f (patch) | |
| tree | 6012ed3ec51e832feec374b9173bd3f8e6737f0b | |
| parent | update commits (diff) | |
| download | dotfiles-nix-65515b37ba50085bbc0c50bfa06e491362e5cc0f.tar.gz dotfiles-nix-65515b37ba50085bbc0c50bfa06e491362e5cc0f.tar.bz2 dotfiles-nix-65515b37ba50085bbc0c50bfa06e491362e5cc0f.zip | |
bluetooth firmware
| -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" ]; }; } |