nix-config/config/support/pipewire.nix

39 lines
709 B
Nix
Raw Permalink Normal View History

2023-01-22 14:17:51 +01:00
{
lib,
2023-09-26 22:25:58 +02:00
minimal,
2023-01-22 14:17:51 +01:00
pkgs,
...
2023-09-26 22:25:58 +02:00
}:
lib.optionalAttrs (!minimal) {
2024-01-27 00:36:23 +01:00
# Sadly does not seem to do anything yet
#musnix = {
# enable = true;
# kernel= {
# realtime = true;
# packages = pkgs.linuxPackages_6_6_rt;
# };
#};
2024-07-26 22:12:48 +02:00
environment.systemPackages = with pkgs; [
pulseaudio
pulsemixer
];
2023-01-22 14:17:51 +01:00
services.pulseaudio.enable = lib.mkForce false;
2023-01-22 14:17:51 +01:00
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
2023-01-22 14:53:39 +01:00
jack.enable = true;
2023-01-22 14:17:51 +01:00
pulse.enable = true;
2024-03-02 16:09:11 +01:00
extraConfig.pipewire."99-allowed-rates"."context.properties"."default.clock.allowed-rates" = [
44100
48000
88200
96000
176400
192000
];
};
2023-01-22 14:17:51 +01:00
}