nix-config/modules/bluetooth/default.nix
2026-03-04 01:00:46 +01:00

21 lines
426 B
Nix

{ inputs, ... }:
{
flake.modules.nixos.bluetooth =
{ pkgs, ... }:
{
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
Experimental = true;
FastConnectable = true;
};
Policy = {
AutoEnable = true;
};
};
};
};
}