nixos-config/modules/pulseaudio.nix

21 lines
410 B
Nix
Raw Normal View History

2020-08-22 17:44:39 +02:00
{ pkgs, ... }:
{
sound.enable = true;
2020-11-05 15:09:12 +01:00
hardware.pulseaudio = {
enable = true;
package = pkgs.pulseaudioFull;
daemon.config = {
"default-sample-format" = "s16le";
"default-sample-rate" = "48000";
"alternate-sample-rate" = "44100";
"resample-method" = "soxr-hq";
"flat-volumes" = "no";
};
2020-08-22 17:44:39 +02:00
};
environment.systemPackages = with pkgs; [
pavucontrol
];
}