refactor into modules

This commit is contained in:
2026-03-10 22:39:50 +01:00
parent 5f16717f9b
commit 1b9d24ce15
9 changed files with 280 additions and 289 deletions

View File

@@ -0,0 +1,13 @@
{ pkgs, ... }:
{
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
wlrobs
obs-backgroundremoval
obs-pipewire-audio-capture
obs-vaapi
];
};
}