312 lines
8.4 KiB
Nix
312 lines
8.4 KiB
Nix
![]() |
{...}: {
|
||
|
services.pipewire = {
|
||
|
enable = true;
|
||
|
systemWide = true;
|
||
|
audio = {
|
||
|
enable = true;
|
||
|
};
|
||
|
wireplumber = {enable = true;};
|
||
|
pulse = {
|
||
|
enable = true;
|
||
|
};
|
||
|
alsa = {
|
||
|
enable = true;
|
||
|
support32Bit = true;
|
||
|
};
|
||
|
extraConfig.pipewire-pulse = {
|
||
|
"context" = {
|
||
|
"properties" = {
|
||
|
"mem.allow-mlock" = true;
|
||
|
"mem.mlock-all" = true;
|
||
|
};
|
||
|
"spa-libs" = {
|
||
|
"audio.convert.*" = "audioconvert/libspa-audioconvert";
|
||
|
"support.*" = "support/libspa-support";
|
||
|
};
|
||
|
"modules" = [
|
||
|
{
|
||
|
"name" = "libpipewire-module-rt";
|
||
|
"args" = {
|
||
|
"nice.level" = -11;
|
||
|
"rt.prio" = 80;
|
||
|
"rt.time.soft" = -1;
|
||
|
"rt.time.hard" = -1;
|
||
|
"uclamp.min" = 0;
|
||
|
"uclamp.max" = 1024;
|
||
|
};
|
||
|
"flags" = ["ifexists" "nofail"];
|
||
|
}
|
||
|
{
|
||
|
"name" = "libpipewire-module-protocol-native";
|
||
|
}
|
||
|
{
|
||
|
"name" = "libpipewire-module-client-node";
|
||
|
}
|
||
|
{
|
||
|
"name" = "libpipewire-module-adapter";
|
||
|
}
|
||
|
{
|
||
|
"name" = "libpipewire-module-metadata";
|
||
|
}
|
||
|
{
|
||
|
"name" = "libpipewire-module-protocol-pulse";
|
||
|
"args" = {};
|
||
|
}
|
||
|
];
|
||
|
"exec" = [
|
||
|
{
|
||
|
"path" = "pactl";
|
||
|
"args" = "load-module module-always-sink";
|
||
|
}
|
||
|
];
|
||
|
"pulse" = {
|
||
|
"cmd" = [
|
||
|
{
|
||
|
"cmd" = "load-module";
|
||
|
"args" = "module-always-sink";
|
||
|
"flags" = [];
|
||
|
}
|
||
|
{
|
||
|
"cmd" = "load-module";
|
||
|
"args" = "module-device-manager";
|
||
|
"flags" = [];
|
||
|
}
|
||
|
{
|
||
|
"cmd" = "load-module";
|
||
|
"args" = "module-device-restore";
|
||
|
"flags" = [];
|
||
|
}
|
||
|
{
|
||
|
"cmd" = "load-module";
|
||
|
"args" = "module-stream-restore";
|
||
|
"flags" = [];
|
||
|
}
|
||
|
{
|
||
|
"cmd" = "load-module";
|
||
|
"args" = "module-switch-on-connect";
|
||
|
}
|
||
|
{
|
||
|
"cmd" = "load-module";
|
||
|
"args" = "module-gsettings";
|
||
|
"flags" = ["nofail"];
|
||
|
}
|
||
|
];
|
||
|
"properties" = {
|
||
|
"server.address" = [
|
||
|
"unix =native"
|
||
|
];
|
||
|
"server.dbus-name" = "org.pulseaudio.Server";
|
||
|
"pulse.allow-module-loading" = true;
|
||
|
"pulse.default.format" = "F32";
|
||
|
};
|
||
|
"properties.rules" = [
|
||
|
{
|
||
|
"matches" = [
|
||
|
{
|
||
|
"cpu.vm.name" = "!null";
|
||
|
}
|
||
|
];
|
||
|
"actions" = {
|
||
|
"update-props" = {
|
||
|
"pulse.min.quantum" = "1024/192000";
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
];
|
||
|
};
|
||
|
"pulse.rules" = [
|
||
|
{
|
||
|
"matches" = [
|
||
|
{
|
||
|
"client.name" = "Firefox";
|
||
|
}
|
||
|
];
|
||
|
"actions" = {
|
||
|
"update-props" = {
|
||
|
"node.latency" = "512/192000";
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
{
|
||
|
"matches" = [
|
||
|
{
|
||
|
"application.process.binary" = "teams";
|
||
|
}
|
||
|
{
|
||
|
"application.process.binary" = "teams-insiders";
|
||
|
}
|
||
|
{
|
||
|
"application.process.binary" = "skypeforlinux";
|
||
|
}
|
||
|
];
|
||
|
"actions" = {
|
||
|
"quirks" = ["force-s16-info"];
|
||
|
};
|
||
|
}
|
||
|
{
|
||
|
"matches" = [
|
||
|
{
|
||
|
"application.process.binary" = "firefox";
|
||
|
}
|
||
|
];
|
||
|
"actions" = {
|
||
|
"quirks" = ["remove-capture-dont-move"];
|
||
|
};
|
||
|
}
|
||
|
{
|
||
|
"matches" = [
|
||
|
{
|
||
|
"application.name" = "~speech-dispatcher.*";
|
||
|
}
|
||
|
];
|
||
|
"actions" = {
|
||
|
"update-props" = {
|
||
|
"pulse.min.req" = "512/192000";
|
||
|
"pulse.min.quantum" = "512/192000";
|
||
|
"pulse.idle.timeout" = 5;
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
];
|
||
|
"stream.properties" = {
|
||
|
"node.latency" = "1024/192000";
|
||
|
"node.autoconnect" = true;
|
||
|
"resample.quality" = 14;
|
||
|
"channelmix.normalize" = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
extraConfig.pipewire = {
|
||
|
"context" = {
|
||
|
"properties" = {
|
||
|
"library.name.system" = "support/libspa-support";
|
||
|
"context.data-loop.library.name.system" = "support/libspa-support";
|
||
|
"support.dbus" = true;
|
||
|
"link.max-buffers" = 64;
|
||
|
"mem.allow-mlock" = true;
|
||
|
"mem.mlock-all" = true;
|
||
|
"clock.power-of-two-quantum" = true;
|
||
|
"cpu.zero.denormals" = true;
|
||
|
"loop.rt-prio" = -1;
|
||
|
"loop.class" = "data.rt";
|
||
|
"context.num-data-loops" = -1;
|
||
|
"context.data-loops" = [
|
||
|
{
|
||
|
"loop.rt-prio" = -1;
|
||
|
"loop.class" = ["data.rt" "audio.rt"];
|
||
|
"library.name.system" = "support/libspa-support";
|
||
|
"thread.name" = "data-loop.0";
|
||
|
}
|
||
|
];
|
||
|
"core.daemon" = true;
|
||
|
"core.name" = "pipewire-0";
|
||
|
"default.clock.rate" = 192000;
|
||
|
"default.clock.allowed-rates" = [192000];
|
||
|
"module.x11.bell" = true;
|
||
|
"module.access" = true;
|
||
|
"module.jackdbus-detect" = true;
|
||
|
};
|
||
|
"properties.rules" = [
|
||
|
{
|
||
|
"matches" = [
|
||
|
{
|
||
|
"cpu.vm.name" = "!null";
|
||
|
}
|
||
|
];
|
||
|
"actions" = {
|
||
|
"update-props" = {
|
||
|
"default.clock.min-quantum" = 1024;
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
];
|
||
|
"spa-libs" = {
|
||
|
"audio.convert.*" = "audioconvert/libspa-audioconvert";
|
||
|
"avb.*" = "avb/libspa-avb";
|
||
|
"api.alsa.*" = "alsa/libspa-alsa";
|
||
|
"api.v4l2.*" = "v4l2/libspa-v4l2";
|
||
|
"api.libcamera.*" = "libcamera/libspa-libcamera";
|
||
|
"api.bluez5.*" = "bluez5/libspa-bluez5";
|
||
|
"api.vulkan.*" = "vulkan/libspa-vulkan";
|
||
|
"api.jack.*" = "jack/libspa-jack";
|
||
|
"support.*" = "support/libspa-support";
|
||
|
"video.convert.*" = "videoconvert/libspa-videoconvert";
|
||
|
};
|
||
|
"modules" = [
|
||
|
{
|
||
|
"name" = "libpipewire-module-rt";
|
||
|
"args" = {
|
||
|
"nice.level" = -11;
|
||
|
"rt.prio" = 80;
|
||
|
"rt.time.soft" = -1;
|
||
|
"rt.time.hard" = -1;
|
||
|
"uclamp.min" = 0;
|
||
|
"uclamp.max" = 1024;
|
||
|
};
|
||
|
"flags" = ["ifexists" "nofail"];
|
||
|
}
|
||
|
{
|
||
|
"name" = "libpipewire-module-protocol-native";
|
||
|
"args" = {
|
||
|
"sockets" = [
|
||
|
{
|
||
|
"name" = "pipewire-0";
|
||
|
}
|
||
|
{
|
||
|
"name" = "pipewire-0-manager";
|
||
|
}
|
||
|
];
|
||
|
};
|
||
|
}
|
||
|
{
|
||
|
"name" = "libpipewire-module-portal";
|
||
|
"flags" = ["ifexists" "nofail"];
|
||
|
}
|
||
|
{
|
||
|
"name" = "libpipewire-module-access";
|
||
|
"args" = {
|
||
|
"access.socket" = {
|
||
|
"pipewire-0" = "default";
|
||
|
"pipewire-0-manager" = "unrestricted";
|
||
|
};
|
||
|
};
|
||
|
"condition" = [
|
||
|
{
|
||
|
"module.access" = true;
|
||
|
}
|
||
|
];
|
||
|
}
|
||
|
{
|
||
|
"name" = "libpipewire-module-x11-bell";
|
||
|
"args" = {
|
||
|
"sink.name" = "@DEFAULT_SINK@";
|
||
|
"sample.name" = "bell-window-system";
|
||
|
"x11.display" = null;
|
||
|
"x11.xauthority" = null;
|
||
|
};
|
||
|
"flags" = ["ifexists" "nofail"];
|
||
|
"condition" = [
|
||
|
{
|
||
|
"module.x11.bell" = true;
|
||
|
}
|
||
|
];
|
||
|
}
|
||
|
{
|
||
|
"name" = "libpipewire-module-jackdbus-detect";
|
||
|
"args" = {
|
||
|
"source.props" = {};
|
||
|
"sink.props" = {};
|
||
|
};
|
||
|
"flags" = ["ifexists" "nofail"];
|
||
|
"condition" = [
|
||
|
{
|
||
|
"module.jackdbus-detect" = true;
|
||
|
}
|
||
|
];
|
||
|
}
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|