Files
nixos-config/hosts/common/features/bluetooth.nix
T
Miguel Palhas 907321cc59 bluetooth
2024-10-06 16:51:29 +01:00

13 lines
188 B
Nix

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