27 lines
403 B
Nix
27 lines
403 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
environment.systemPackages = [
|
|
pkgs.bluez
|
|
];
|
|
hardware.bluetooth = {
|
|
enable = true;
|
|
powerOnBoot = false;
|
|
settings = {
|
|
General = {
|
|
Name = "Hello";
|
|
ControllerMode = "dual";
|
|
FastConnectable = "true";
|
|
Experimental = "true";
|
|
};
|
|
Policy = {
|
|
AutoEnable = "true";
|
|
};
|
|
};
|
|
};
|
|
}
|