infra/nix/os/snippets/bluetooth.nix

8 lines
197 B
Nix
Raw Permalink Normal View History

2024-11-15 10:17:56 +01:00
{ pkgs, ... }:
2024-02-08 20:53:22 +01:00
{
# required for running blueman-applet in user sessions
2024-11-15 10:17:56 +01:00
services.dbus.packages = with pkgs; [ blueman ];
hardware.bluetooth.enable = true;
services.blueman.enable = true;
}