nixfiles/profiles/nixos/sound/pipewire.nix

19 lines
396 B
Nix
Raw Normal View History

2024-04-01 17:19:39 +01:00
{...}: {
2022-02-08 19:46:57 +00:00
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
jack.enable = true;
# TODO: fix config
#config.pipewire = {
# "context.properties" = {
# # So fiio btr3k works,
# "default.clock.rate" = "48000";
# };
#};
wireplumber.enable = true;
2022-02-08 19:46:57 +00:00
};
}