8 lines
188 B
Nix
8 lines
188 B
Nix
|
{ pkgs, ... }: {
|
||
|
hardware.bluetooth.enable = true;
|
||
|
hardware.brillo.enable = true;
|
||
|
services.blueman.enable = true;
|
||
|
|
||
|
environment.systemPackages = with pkgs; [ bluez bluez-tools ];
|
||
|
}
|