13 lines
280 B
Nix
13 lines
280 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
security.rtkit.enable = true;
|
|
services.pipewire = {
|
|
enable = true;
|
|
alsa.enable = true;
|
|
alsa.support32Bit = true;
|
|
pulse.enable = true;
|
|
jack.enable = true;
|
|
};
|
|
environment.systemPackages = with pkgs; [ helvum ]; # patchbay
|
|
} |