20 lines
306 B
Nix
20 lines
306 B
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
security.rtkit.enable = true;
|
|
services.pipewire = {
|
|
enable = true;
|
|
alsa.enable = true;
|
|
alsa.support32Bit = true;
|
|
pulse.enable = true;
|
|
};
|
|
environment.systemPackages = with pkgs; [
|
|
pavucontrol
|
|
pulseaudio # for pactl
|
|
easyeffects
|
|
];
|
|
} |