nix-conf/system/modules/bluetooth.nix
2025-04-09 13:24:02 +08:00

25 lines
429 B
Nix

{
services = {
blueman.enable = true;
};
hardware = {
bluetooth = {
enable = true;
powerOnBoot = true;
settings.General = {
experimental = true;
Privacy = "device";
JustWorksRepairing = "always";
Class = "0x000100";
FastConnectable = true;
};
};
};
boot = {
extraModprobeConfig = ''
options bluetooth disable_ertm=Y
'';
};
}