25 lines
349 B
Nix
25 lines
349 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
hardware.bluetooth = {
|
|
enable = true;
|
|
powerOnBoot = true;
|
|
settings = {
|
|
General = {
|
|
Experimental = true;
|
|
};
|
|
Policy = {
|
|
AutoEnable = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
bluez
|
|
bluez-tools
|
|
blueman
|
|
];
|
|
|
|
services.blueman.enable = true;
|
|
}
|