6 lines
173 B
Nix
6 lines
173 B
Nix
{pkgs, ...}: {
|
|
services.blueman.enable = true;
|
|
hardware.pulseaudio.enable = true;
|
|
hardware.bluetooth.enable = true;
|
|
services.dbus.packages = with pkgs; [blueman];
|
|
}
|