nixos-config/modules/systems/bluetooth.nix

18 lines
342 B
Nix

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