nix-config/modules/bluetooth/default.nix
2026-03-03 23:21:29 +00:00

16 lines
238 B
Nix

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