Move packages into overlays as God intended

This commit is contained in:
Jimbo 2024-10-13 02:53:39 -04:00
parent fa3890b814
commit a62148572b
11 changed files with 10 additions and 9 deletions

View file

@ -0,0 +1,14 @@
{ pkgs, lib, config, ... }:
{
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
obs-pipewire-audio-capture
obs-webkitgtk
obs-multi-rtmp
obs-vkcapture
obs-tuna
looking-glass-obs
];
};
}