nix-configs/modules/de/audio.nix
2025-03-27 20:06:54 +01:00

20 lines
317 B
Nix

{pkgs, ...}: {
programs = {
noisetorch.enable = true;
};
services = {
pipewire = {
enable = true;
alsa.enable = true;
pulse.enable = true;
jack.enable = true;
};
};
environment.systemPackages = with pkgs; [
pavucontrol
volumeicon
playerctl
helvum
];
}