30 lines
501 B
Nix
30 lines
501 B
Nix
{pkgs, ...}: {
|
|
# Enable sound with pipewire
|
|
hardware.pulseaudio.enable = false;
|
|
security.rtkit.enable = true;
|
|
|
|
services.pipewire = {
|
|
enable = true;
|
|
|
|
# If you want to use JACK applications, uncomment this
|
|
jack.enable = true;
|
|
pulse.enable = true;
|
|
|
|
alsa = {
|
|
enable = true;
|
|
support32Bit = true;
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
helvum
|
|
pwvucontrol
|
|
lxqt.pavucontrol-qt
|
|
|
|
qpwgraph
|
|
easyeffects
|
|
non
|
|
|
|
roc-toolkit
|
|
];
|
|
}
|