diff --git a/profiles/pipewire.nix b/profiles/pipewire.nix new file mode 100644 index 0000000..ed16113 --- /dev/null +++ b/profiles/pipewire.nix @@ -0,0 +1,31 @@ +# Common configuration for pipewire on MIO desktops +{ + config, + pkgs, + ... +}: { + security.rtkit.enable = true; + + services = { + pipewire = { + enable = true; + alsa.enable = true; + alsa.support32Bit = true; + pulse.enable = true; + }; + }; + + environment.etc = { + "wireplumber/bluetooth.lua.d/51-bluez-config.lua".text = '' + bluez_monitor.properties = { + ["bluez5.enable-sbc-xq"] = true, + ["bluez5.enable-msbc"] = true, + ["bluez5.enable-hw-volume"] = true, + ["bluez5.headset-roles"] = "[ hsp_hs hsp_ag hfp_hf hfp_ag ]" + } + ''; + }; + + hardware.pulseaudio.enable = false; + sound.enable = true; # Enable sound. +}