nixos-config/hosts/thinkpad/modules/sound/default.nix
2023-12-29 19:47:57 +01:00

16 lines
261 B
Nix

{ pkgs, ... }:
{
sound.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
environment.systemPackages = with pkgs; [
helvum
easyeffects
pavucontrol
];
}