nix: make pulseaudio options version-dependent
Signed-off-by: Myned <dev@bjork.tech>
This commit is contained in:
parent
6fa9b974ec
commit
370060f75e
1 changed files with 36 additions and 26 deletions
|
@ -8,21 +8,22 @@ with lib; let
|
||||||
in {
|
in {
|
||||||
options.custom.services.pipewire.enable = mkOption {default = false;};
|
options.custom.services.pipewire.enable = mkOption {default = false;};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable ({
|
||||||
#!! Realtime priority may cause desync
|
#!! Realtime priority may cause desync
|
||||||
#// security.rtkit.enable = true;
|
#// security.rtkit.enable = true;
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
pulseaudio.enable = false;
|
|
||||||
|
|
||||||
# https://wiki.nixos.org/wiki/PipeWire
|
# https://wiki.nixos.org/wiki/PipeWire
|
||||||
# https://gitlab.freedesktop.org/pipewire/pipewire
|
# https://gitlab.freedesktop.org/pipewire/pipewire
|
||||||
pipewire = {
|
pipewire = {
|
||||||
enable = true;
|
enable = true;
|
||||||
alsa.enable = true;
|
|
||||||
alsa.support32Bit = true;
|
|
||||||
pulse.enable = true;
|
pulse.enable = true;
|
||||||
|
|
||||||
|
alsa = {
|
||||||
|
enable = true;
|
||||||
|
support32Bit = true;
|
||||||
|
};
|
||||||
|
|
||||||
# Avoid resampling if possible
|
# Avoid resampling if possible
|
||||||
# https://wiki.archlinux.org/title/PipeWire#Changing_the_allowed_sample_rate(s)
|
# https://wiki.archlinux.org/title/PipeWire#Changing_the_allowed_sample_rate(s)
|
||||||
extraConfig.pipewire = {
|
extraConfig.pipewire = {
|
||||||
|
@ -38,5 +39,14 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
}
|
||||||
|
// (
|
||||||
|
if versionAtLeast version "25.05"
|
||||||
|
then {
|
||||||
|
services.pulseaudio.enable = false;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
hardware.pulseaudio.enable = false;
|
||||||
|
}
|
||||||
|
));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue