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

15 lines
240 B
Nix
Raw Normal View History

2023-11-24 09:57:15 +01:00
{ pkgs, ... }:
{
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
2024-07-31 14:16:33 +02:00
# easyeffects
2023-12-29 19:47:57 +01:00
pavucontrol
2023-11-24 09:57:15 +01:00
];
}