Bluetooth fix
Some checks failed
/ test (push) Has been cancelled

Don't know exactly what happened but this fixed it
This commit is contained in:
Andrea Ciceri 2024-04-17 13:45:38 +02:00
parent 77f117cc5d
commit fc65aa5403
Signed by: aciceri
SSH key fingerprint: SHA256:/AagBweyV4Hlfg9u092n8hbHwD5fcB6A3qhDiDA65Rg

View file

@ -1,7 +1,24 @@
{pkgs, ...}: {
{
pkgs,
config,
...
}: {
services.blueman.enable = true;
hardware.pulseaudio.enable = true;
hardware.bluetooth.enable = true;
hardware.bluetooth = {
enable = true;
settings = {
General = {
Name = config.networking.hostName;
ControllerMode = "dual";
FastConnectable = "true";
Experimental = "true";
};
Policy = {
AutoEnable = "true";
};
};
};
services.dbus.packages = with pkgs; [blueman];
ccr.extraGroups = ["bluetooth"];
}