17 lines
330 B
Nix
17 lines
330 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
services.blueman.enable = config.my.desktop == "sway";
|
|
hardware.bluetooth = {
|
|
enable = true;
|
|
settings = {
|
|
General = {
|
|
DiscoverableTimeout = 0;
|
|
Discoverable = true;
|
|
AlwaysPairable = true;
|
|
};
|
|
Policy = {
|
|
AutoEnable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|