Don't know exactly what happened but this fixed it
This commit is contained in:
parent
77f117cc5d
commit
fc65aa5403
1 changed files with 19 additions and 2 deletions
|
@ -1,7 +1,24 @@
|
||||||
{pkgs, ...}: {
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
services.blueman.enable = true;
|
services.blueman.enable = true;
|
||||||
hardware.pulseaudio.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];
|
services.dbus.packages = with pkgs; [blueman];
|
||||||
ccr.extraGroups = ["bluetooth"];
|
ccr.extraGroups = ["bluetooth"];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue