feat: install obs on laptop

This commit is contained in:
2026-02-23 12:02:30 +05:00
parent 7a1f5d8f67
commit 3d0607bec0
2 changed files with 15 additions and 0 deletions

View File

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