nix-configs/modules/desktop-environment/audio.nix
2025-01-15 14:47:18 +01:00

21 lines
352 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
];
# sound.mediaKeys.enable = true;
}