nixos-config/hardware/bluetooth.nix

9 lines
164 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
{
hardware.bluetooth.enable = true;
hardware.bluetooth.settings = {
General = { Enable = "Source,Sink,Media,Socket"; };
};
}