Enable RTKit when using pipewire
This commit is contained in:
parent
925a106692
commit
99adc0eb3a
22
sets/pipewire.nix
Normal file
22
sets/pipewire.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
alsa = {
|
||||
enable = true;
|
||||
support32Bit = pkgs.targetPlatform.system == "x86_64-linux";
|
||||
};
|
||||
pulse.enable = true;
|
||||
jack.enable = true;
|
||||
};
|
||||
hardware.pulseaudio.enable = lib.mkForce false;
|
||||
security.rtkit.enable = true;
|
||||
environment.systemPackages = with pkgs; [
|
||||
pulseaudioLight
|
||||
qjackctl
|
||||
|
||||
carla
|
||||
lsp-plugins
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue