nixfiles/profiles/sound/pulseaudio/pulse-bluetooth.nix

12 lines
295 B
Nix
Raw Normal View History

2022-01-25 12:15:56 +00:00
{ pkgs, tree, lib, ... }: {
imports = with tree; [
profiles.connectivity.bluetooth
];
hardware.pulseaudio = {
extraModules = with pkgs; [ pkgs.pulseaudio-modules-bt ];
package = lib.mkForce pkgs.pulseaudioFull;
extraConfig = "load-module module-switch-on-connect";
};
}