mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
39 lines
839 B
Nix
39 lines
839 B
Nix
# Enable the preferred audio workflow.
|
|
{ lib, ... }:
|
|
|
|
{
|
|
hardware.pulseaudio.enable = false;
|
|
security.rtkit.enable = lib.mkDefault true;
|
|
|
|
# The main preferred setup of our audio system.
|
|
services.pipewire = {
|
|
enable = true;
|
|
|
|
# This is enabled by default but I want to explicit since
|
|
# this is my preferred way of managing anyways.
|
|
wireplumber.enable = true;
|
|
|
|
# Enable all the bi-...bridges.
|
|
alsa.enable = true;
|
|
alsa.support32Bit = true;
|
|
pulse.enable = true;
|
|
jack.enable = true;
|
|
};
|
|
|
|
# This is based from https://jackaudio.org/faq/linux_rt_config.html.
|
|
security.pam.loginLimits = [
|
|
{
|
|
domain = "@audio";
|
|
type = "-";
|
|
item = "rtprio";
|
|
value = "95";
|
|
}
|
|
{
|
|
domain = "@audio";
|
|
type = "-";
|
|
item = "memlock";
|
|
value = "unlimited";
|
|
}
|
|
];
|
|
}
|