nixos-config/system/bluetooth.nix
Christoph Heiss 7c5f063f51
system: Add bluetooth service configuration
Signed-off-by: Christoph Heiss <christoph@c8h4.io>
2023-10-12 20:23:34 +02:00

11 lines
158 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [ bluez bluetuith ];
hardware.bluetooth = {
enable = true;
powerOnBoot = false;
};
}