Files
system-config/system/features/bluetooth.nix

11 lines
186 B
Nix

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