blob: aed4f942b792a9a05ff082fec44ac7d7ebce42a6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{ pkgs, ... }:
{
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
pulse.enable = true;
jack.enable = true;
wireplumber.enable = true;
};
environment.systemPackages = with pkgs; [
alsa-utils
qjackctl
ardour
fluidsynth
a2jmidid
pavucontrol
audacity
easyeffects
];
}
|