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

10 lines
289 B
Nix
Raw Normal View History

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