aboutsummaryrefslogtreecommitdiff
path: root/system/audio.nix
blob: 80dd60b6979022aaba28bd4505ff7943d653ba1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{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; [
    pavucontrol
  ];
}