Files
nixconfig/modules/nixos/system/network/bluetooth/default.nix
2023-11-08 16:18:39 +01:00

8 lines
188 B
Nix

{ pkgs, ... }: {
hardware.bluetooth.enable = true;
hardware.brillo.enable = true;
services.blueman.enable = true;
environment.systemPackages = with pkgs; [ bluez bluez-tools ];
}