dotfiles/nix/nixos-modules/pulseaudio.nix
main eec47780de
pulseaudio bluetooth and quality
Signed-off-by: main <magic_rb@redalder.org>
2022-05-23 08:33:01 +02:00

32 lines
826 B
Nix

{ config, lib, pkgs, ... }:
with lib;
let
bluetooth-enable = config.hardware.bluetooth.enable;
cfg = config.magic_rb.pulseaudio;
in
{
options.magic_rb.pulseaudio = {
enable = mkEnableOption "Enable pulseaudio, with bluetooth support if bt enabled";
};
config = mkIf cfg.enable {
sound.enable = true;
hardware = {
pulseaudio = {
enable = true;
# extraModules = mkIf bluetooth-enable [ pkgs.pulseaudio-modules-bt ];
package = mkIf bluetooth-enable pkgs.pulseaudioFull;
daemon.config = {
default-sample-rate = 96000;
default-sample-format = "s32le";
resample-method = "speex-float-5";
nice-level = -19;
};
};
pulseaudio.support32Bit = true;
};
systemd.user.services.pulseaudio.enable = true;
};
}