infra/nix/os/snippets/bluetooth.nix

11 lines
206 B
Nix
Raw Normal View History

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