nixos-config/system/hardware/bluetooth.nix
2024-03-24 12:14:10 -04:00

8 lines
152 B
Nix

{ config, lib, pkgs, ... }:
{
environment.systemPackages = [ pkgs.blueman ];
hardware.bluetooth.enable = true;
services.blueman.enable = true;
}