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

17 lines
325 B
Nix

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