20 lines
410 B
Nix
20 lines
410 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
|
||
|
hardware.pulseaudio = {
|
||
|
enable = true;
|
||
|
zeroconf.discovery.enable = true;
|
||
|
daemon.config = {
|
||
|
flat-volumes = "no";
|
||
|
avoid-resampling = "yes";
|
||
|
resample-method = "speex-float-10";
|
||
|
default-sample-format = "s32le";
|
||
|
default-sample-rate = "96000";
|
||
|
};
|
||
|
package = pkgs.pulseaudioFull;
|
||
|
extraModules = [ pkgs.pulseaudio-modules-bt ];
|
||
|
};
|
||
|
|
||
|
}
|