infra/nix/os/snippets/bluetooth.nix
2024-02-08 21:04:39 +01:00

10 lines
206 B
Nix

{
pkgs,
lib,
...
}: {
# required for running blueman-applet in user sessions
services.dbus.packages = with pkgs; [blueman];
hardware.bluetooth.enable = true;
services.blueman.enable = true;
}