nix-configs/modules/desktop-environment/audio.nix

25 lines
435 B
Nix
Raw Permalink Normal View History

2024-03-06 10:09:02 +00:00
{pkgs, ...}: {
programs = {
noisetorch.enable = true;
};
services = {
pipewire = {
enable = true;
alsa.enable = true;
pulse.enable = true;
jack.enable = true;
2023-02-13 11:54:21 +00:00
};
};
2024-03-06 10:09:02 +00:00
environment.systemPackages = with pkgs; [
pavucontrol
volumeicon
playerctl
pulseaudioFull
cava
helvum
];
hardware.pulseaudio.enable = pkgs.lib.mkForce false;
2024-07-30 20:06:36 +00:00
# sound.mediaKeys.enable = true;
2023-02-13 11:54:21 +00:00
}