mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-15 17:45:12 -05:00
24 lines
348 B
Nix
Executable file
24 lines
348 B
Nix
Executable file
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
hardware = {
|
|
bluetooth = {
|
|
enable = true;
|
|
package = pkgs.bluez;
|
|
powerOnBoot = true;
|
|
settings = {
|
|
General = {
|
|
Experimental = true;
|
|
Disable = "Headset";
|
|
};
|
|
};
|
|
disabledPlugins = [
|
|
"sap"
|
|
];
|
|
};
|
|
};
|
|
services.blueman.enable = true;
|
|
}
|