aboutsummaryrefslogtreecommitdiff
path: root/hosts/herra/packages.nix
blob: f8c8c5db72789c8b14219eb8e9ee816bb7b69eac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{pkgs, ...}: {
  environment.systemPackages = with pkgs; [
    # System
    btop
    radeontop
    alsa-utils # provides alsamixer

    # Streaming / Recording
    obs-studio
    easyeffects
    # obs-ndi not available in current package set

    # Audio
    pavucontrol
    jack2

    # Video
    ffmpeg
    v4l-utils
    cheese
  ];
}