mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
14 lines
363 B
Nix
14 lines
363 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
config = lib.mkIf (lib.elem "desktop" config.meta.deploy.profiles) {
|
|
sound.extraConfig = ''
|
|
defaults.pcm.rate_converter "speexrate_best"
|
|
'';
|
|
hardware.pulseaudio.daemon.config = {
|
|
default-sample-format = "s24le";
|
|
default-sample-rate = 192000;
|
|
resample-method = "soxr-vhq";
|
|
};
|
|
};
|
|
}
|