aboutsummaryrefslogtreecommitdiff
path: root/hosts/herra/packages.nix
blob: 989f7a5d358e625625334546a6f1de14b5a371ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{pkgs, ...}: {
  environment.systemPackages = with pkgs; [
    # System
    btop
    radeontop
    alsa-utils # provides alsamixer

    # Streaming / Recording
    obs-studio
    easyeffects

    # OBS with plugins
    (obs-studio.override {
      plugins = with pkgs.obs-studio-plugins; [
        distroav
        obs-vkcapture
        obs-pipewire-audio-capture
        # obs-source-switcher
        obs-source-record
        obs-source-clone
        # obs-media-control
        # obs-scene-as-transition
        # advanced-scene-switcher
        obs-retro-effects
        obs-dvd-screensaver
        obs-composite-blur
      ];
    })

    # Audio
    pavucontrol
    jack2

    # Video
    ffmpeg
    v4l-utils
    cheese
  ];
}