18 lines
274 B
Nix
18 lines
274 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services.pipewire = {
|
|
enable = true;
|
|
alsa = {
|
|
enable = true;
|
|
support32Bit = true;
|
|
};
|
|
pulse.enable = true;
|
|
};
|
|
security.rtkit.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
pavucontrol
|
|
easyeffects
|
|
];
|
|
}
|