cornflake/system/core/sound.nix
2026-03-01 01:39:57 +09:00

18 lines
409 B
Nix

{
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
extraConfig.pipewire."92-low-latency" = {
context.properties = {
default.clock.rate = 48000;
default.clock.quantum = 128;
default.clock.min-quantum = 32;
default.clock.max-quantum = 1024;
};
};
};
}