7 lines
208 B
Nix
7 lines
208 B
Nix
{pkgs, ...}: {
|
|
services.blueman.enable = true;
|
|
hardware.pulseaudio.enable = true;
|
|
hardware.bluetooth.enable = true;
|
|
services.dbus.packages = with pkgs; [blueman];
|
|
ccr.extraGroups = ["bluetooth"];
|
|
}
|