mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 02:25:12 -05:00
11 lines
224 B
Nix
Executable file
11 lines
224 B
Nix
Executable file
{pkgs, ...}: {
|
|
hardware = {
|
|
bluetooth = {
|
|
enable = true;
|
|
package = pkgs.bluez;
|
|
powerOnBoot = true;
|
|
settings = {General = {Experimental = true;};};
|
|
disabledPlugins = ["sap"];
|
|
};
|
|
};
|
|
}
|