aboutsummaryrefslogtreecommitdiff
path: root/modules/sound/default.nix
blob: 1a830186a7e9f59a895340acab2035b734804b8d (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
  ];
}