25 lines
429 B
Nix
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
|
|
'';
|
|
};
|
|
}
|