11 lines
186 B
Nix
11 lines
186 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# Enable bluetooth.
|
|
hardware.bluetooth.enable = true;
|
|
|
|
# Install the management service and packages.
|
|
environment.systemPackages = with pkgs; [
|
|
bluez
|
|
];
|
|
}
|