diff --git a/modules/pulseaudio.nix b/modules/pulseaudio.nix index bc56b7e..19acbf2 100644 --- a/modules/pulseaudio.nix +++ b/modules/pulseaudio.nix @@ -5,6 +5,9 @@ hardware.pulseaudio = { enable = true; package = pkgs.pulseaudioFull; + extraModules = [ + pkgs.pulseaudio-modules-bt # Non-standard codecs for bluetooth + ]; daemon.config = { "default-sample-format" = "s16le"; "default-sample-rate" = "48000"; @@ -14,6 +17,10 @@ }; }; + # Bluetooth support + hardware.bluetooth.enable = true; + services.blueman.enable = true; + environment.systemPackages = with pkgs; [ pavucontrol ];