audio: move framenix to pipewire, keep thinknix at pulseaudio

This commit is contained in:
Trolli Schmittlauch 2024-05-21 22:40:26 +02:00
parent 5e7a41ab47
commit 716df0c611
5 changed files with 44 additions and 16 deletions

15
common/pulseaudio.nix Normal file
View file

@ -0,0 +1,15 @@
{ pkgs, ... }:
{
# Enable sound.
hardware.pulseaudio = {
enable = true;
package = pkgs.pulseaudioFull;
# decouple pulseaudio application and sink volumes
daemon.config = {
flat-volumes = "no";
};
# C3D2 hq music
zeroconf.discovery.enable = true;
zeroconf.publish.enable = true;
};
}