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

30 lines
607 B
Nix
Raw Normal View History

2023-11-24 09:57:15 +01:00
{ pkgs, ... }:
{
services.pipewire = {
enable = true;
2025-01-22 13:36:08 +01:00
raopOpenFirewall = true;
2023-11-24 09:57:15 +01:00
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
2025-01-22 13:36:08 +01:00
extraConfig.pipewire = {
"10-airplay" = {
"context.modules" = [
{
name = "libpipewire-module-raop-discover";
# increase the buffer size if you get dropouts/glitches
# args = {
# "raop.latency.ms" = 500;
# };
}
];
};
};
2023-11-24 09:57:15 +01:00
};
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
];
}