7 lines
142 B
Nix
7 lines
142 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
|
||
|
{
|
||
|
config.hardware.bluetooth.enable = true;
|
||
|
config.environment.systemPackages = with pkgs; [ bluez-tools ];
|
||
|
}
|