nixos-config/hosts/thinkpad/modules/sound/default.nix

16 lines
261 B
Nix
Raw Normal View History

2023-11-24 09:57:15 +01:00
{ pkgs, ... }:
{
sound.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
environment.systemPackages = with pkgs; [
2023-12-01 15:07:47 +01:00
helvum
2023-11-25 23:22:16 +01:00
easyeffects
2023-12-29 19:47:57 +01:00
pavucontrol
2023-11-24 09:57:15 +01:00
];
}