nixfleet/modules/bluetooth/default.nix
2022-08-19 17:37:23 +02:00

6 lines
173 B
Nix

{pkgs, ...}: {
services.blueman.enable = true;
hardware.pulseaudio.enable = true;
hardware.bluetooth.enable = true;
services.dbus.packages = with pkgs; [blueman];
}