14 lines
323 B
Nix
14 lines
323 B
Nix
{ ... }: {
|
|
hardware.bluetooth = {
|
|
enable = true; # enables support for Bluetooth
|
|
powerOnBoot = true; # powers up the default Bluetooth controller on boot
|
|
settings.General = {
|
|
Privacy = "device";
|
|
JustWorksRepairing = "always";
|
|
Class = "0x000100";
|
|
FastConnectable = true;
|
|
};
|
|
};
|
|
}
|
|
|