10 lines
289 B
Nix
10 lines
289 B
Nix
{ 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";
|
|
};
|
|
}
|